|
|
@@ -147,7 +147,9 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
if(res.data.length) {
|
|
|
- this.tableData = res.data
|
|
|
+ this.tableData.push(...res.data)
|
|
|
+ const res2 = new Map();
|
|
|
+ this.tableData = this.tableData.filter((item) => !res2.has(item['itemno']) && res2.set(item['itemno'], 1));
|
|
|
this.$refs.logislist.tableData = []
|
|
|
}
|
|
|
},
|