@@ -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)
}
})
})