浏览代码

成本分配列表-导出

jbb 1 年之前
父节点
当前提交
cd2de1de6a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/views/cost-allocation-total/list.vue

+ 1 - 1
src/views/cost-allocation-total/list.vue

@@ -318,7 +318,7 @@ export default {
           return
         }
         if (typeof window.navigator.msSaveBlob !== 'undefined') {
-          window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), +fileName + '.xlsx')
+          window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xlsx')
         } else {
           let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
           let link = document.createElement('a')