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;