From 6d5e0ee7c265c930666138e4444881351386a9dc Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Fri, 4 Jul 2025 17:22:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=AF=BC=E5=85=A5=E6=80=BB?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisQuotePrice/transQuotePriceList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/emis/emisQuotePrice/transQuotePriceList.vue b/src/views/emis/emisQuotePrice/transQuotePriceList.vue index 90a85118..576c1614 100644 --- a/src/views/emis/emisQuotePrice/transQuotePriceList.vue +++ b/src/views/emis/emisQuotePrice/transQuotePriceList.vue @@ -395,8 +395,6 @@ export default { openUploadForm:false, uploadMsg:"", uploadExcelDataInfo:"", - // 总条数 - total: 0, //导入模板列表表格数据 tmpDataList: [], selectionList:[], @@ -569,6 +567,7 @@ export default { } }) }) + that.total = that.emisQuotePriceList.length; } else { //已新增 delEmisQuotePrice(quoteIds).then(() => { that.getList(); @@ -721,6 +720,7 @@ export default { item.endDate = this.excelDateToJSDate(item.endDate); return item; }) + this.total = newList.length; this.emisQuotePriceList = this.emisQuotePriceList.concat(newList); this.tmpDataList=[]; this.openUploadForm = false;