utils.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. import { parseTime } from '@/utils'
  2. /**
  3. * @description 导出excel
  4. * @param {*} ctx
  5. * @param {*} api
  6. */
  7. export const exportExcel = async (ctx, api, data = {}, fileName = 'excel数据') => {
  8. try {
  9. ctx.isExportLoading = true
  10. const res = await api(data)
  11. if (!res) {
  12. return ctx.$message.error('没有导出数据')
  13. }
  14. fileName += ' - ' + parseTime(new Date().getTime(), '{y}-{m}-{d}') + '.xlsx'
  15. const blob = new Blob([res])
  16. if ('download' in document.createElement('a')) {
  17. // 非IE下载
  18. const elink = document.createElement('a')
  19. elink.download = fileName
  20. elink.style.display = 'none'
  21. elink.href = URL.createObjectURL(blob)
  22. document.body.appendChild(elink)
  23. elink.click()
  24. URL.revokeObjectURL(elink.href) // 释放URL 对象
  25. document.body.removeChild(elink)
  26. } else {
  27. // IE10+下载
  28. navigator.msSaveBlob(blob, fileName)
  29. }
  30. } catch (error) {
  31. } finally {
  32. ctx.isExportLoading = false
  33. }
  34. }