修复仓库字典单据显示问题

purchase^2
zhengmingliang 2 years ago
parent bd20bdff93
commit 46571d6261

@ -876,7 +876,7 @@ export default {
bussinessTypeQuery: {
enabled: true,
page: 1,
limit: 100
limit: 10
},
bussinessTypeTotal: 0,
curSeleUser: null,
@ -1355,6 +1355,7 @@ export default {
if (val != null) {
this.bussinessTypeQuery.page = val;
}
this.bussinessTypeQuery.code=this.busQuery.code;
getJoinBussinessType(this.bussinessTypeQuery).then((res) => {
this.selectBussinessTypeList = [];
this.bussinessTypeList = res.data.list;
@ -1365,11 +1366,9 @@ export default {
that.$refs.typeList.clearSelection();
}
that.bussinessTypeList.forEach(row => {
for (let j in that.bussinessTypeData) {
if (row.action == that.bussinessTypeData[j].action) {
if (row.checkSelect==true) {
that.$refs.typeList.toggleRowSelection(row, true);
}
}
});
});
}).catch((error) => {

Loading…
Cancel
Save