更新采购订单查询、零件追溯、库存查询和采购入库页面

This commit is contained in:
Developer
2026-06-08 17:14:36 +08:00
parent 6569ed2cf3
commit 7b969f0eb6
4 changed files with 265 additions and 15 deletions

View File

@@ -1045,6 +1045,14 @@ export default {
if (this.tableData1.length === 0) {
this.getContractState()
this.getSummaries()
} else {
this.$nextTick(function() {
this.tableData1.forEach(function(row) {
if (Number(row.等待入库数量) > 0) {
this.$refs.table.toggleRowSelection(row, true)
}
}.bind(this))
}.bind(this))
}
})
},