From 6a28c1a5e0f835ba5446dc7414d2f8313e489cc6 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Mon, 23 Mar 2026 15:12:08 +0800 Subject: [PATCH] =?UTF-8?q?TMS=E6=88=90=E6=9C=AC=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E6=88=90=E6=9C=AC=E5=88=97=E8=A1=A8=20=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisTmsCostFee/BatchImportCostFee.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/views/emis/emisTmsCostFee/BatchImportCostFee.vue b/src/views/emis/emisTmsCostFee/BatchImportCostFee.vue index fcba613b..ab2a8391 100644 --- a/src/views/emis/emisTmsCostFee/BatchImportCostFee.vue +++ b/src/views/emis/emisTmsCostFee/BatchImportCostFee.vue @@ -31,7 +31,6 @@ type="warning" icon="el-icon-download" size="mini" - :disabled="tmpErrorList.length==0" @click="handleExport" >导出异常数据 @@ -638,7 +637,6 @@ export default { } this.orderList = this.orderList.concat(this.tmpDataList); - this.tmpErrorList = this.orderList.filter(item => item.uploadStatus === -1); this.tmpDataList=[]; this.openUploadForm = false; @@ -684,7 +682,6 @@ export default { }) }) that.$refs.multipleTable.clearSelection(); - that.tmpErrorList = that.orderList.filter(item => item.uploadStatus === -1); }).then(() => { this.$modal.msgSuccess("删除成功"); }).catch(() => {}); @@ -731,6 +728,7 @@ export default { const loadingInstance = this.$loading({ text: '正在导出...' }) + this.tmpErrorList = this.orderList.filter(item => item.uploadStatus === -1); this.exportData(this.tmpErrorList,loadingInstance); }, exportData(selData, loadingInstance) {