From 71b7278bcd008c913f0901a1250820213a572504 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Thu, 31 Jul 2025 10:47:40 +0800 Subject: [PATCH] =?UTF-8?q?=E9=94=80=E5=94=AE=E6=9C=88=E8=AF=84=E7=99=BB?= =?UTF-8?q?=E8=AE=B0=E6=89=B9=E9=87=8F=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../salesMonthlyReview/draftSubmitReview.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/emis/salesMonthlyReview/draftSubmitReview.vue b/src/views/emis/salesMonthlyReview/draftSubmitReview.vue index e6d34d6f..5fed38e3 100644 --- a/src/views/emis/salesMonthlyReview/draftSubmitReview.vue +++ b/src/views/emis/salesMonthlyReview/draftSubmitReview.vue @@ -2,8 +2,8 @@
@@ -69,7 +69,7 @@ href="/static/tpl/imp_trans_quote.xls">下载导入Excel模板
{{ - fileName }} {{ uploadExcelDataInfo }}
+ fileName }} {{ uploadExcelDataInfo }} @@ -110,7 +110,7 @@ export default { // 总条数 total: 0, // 报价列表表格数据 - emisQuotePriceList: [], + list: [], tmpDataList: [], selectionList: [], selectionIndexList: [], @@ -211,7 +211,7 @@ export default { let loadingInstance = this.$loading({ text: '正在解析 ' + _index + ' 数据...' }) - this.emisQuotePriceList = []; + this.list = []; this.tmpDataList = []; // 组装提交的数据 for (let index = 0; index < results.length; index++) { @@ -277,7 +277,7 @@ export default { return; } - this.emisQuotePriceList = this.emisQuotePriceList.concat(this.tmpDataList); + this.list = this.list.concat(this.tmpDataList); this.tmpDataList = []; @@ -310,9 +310,9 @@ export default { let that = this; this.$modal.confirm('是否确认删除').then(function () { that.selectionList.forEach((item, index) => { - that.emisQuotePriceList.forEach((v, i) => { + that.list.forEach((v, i) => { if (item.index === v.index) { - that.emisQuotePriceList.splice(i, 1) + that.list.splice(i, 1) } }) })