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

featFunction
zhengmingliang 2 years ago
parent eb92836b0d
commit 3af256aa28

@ -887,7 +887,7 @@ export default {
bussinessTypeQuery: {
enabled: true,
page: 1,
limit: 100
limit: 10
},
bussinessTypeTotal: 0,
curSeleUser: null,
@ -1376,6 +1376,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;
@ -1385,11 +1386,10 @@ export default {
if (that.$refs.typeList) {
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);
}
}
});
});

Loading…
Cancel
Save