调整导入总数

This commit is contained in:
wuteng 2025-07-04 17:22:25 +08:00
parent 57f879be4e
commit 6d5e0ee7c2

View File

@ -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;