1.修复校验异常单据选择业务单据弹出提示异常信息问题

2.修复分页bug
fengcang
x_z 3 years ago
parent d9777aa49f
commit dfbf57697a

@ -584,7 +584,7 @@ export default {
}
},
detailHandleCurrentChange(val) {
this.query.page = val;
this.detailQuery.page = val;
this.getStockOrderDetailList();
},
//
@ -697,9 +697,7 @@ export default {
.then((response) => {
this.detailLoading = false;
this.detailList = response.data.list || [];
/*this.detailList.forEach(data => {
data['edit'] = false;
});*/
this.detailTotal = response.data.total;
})
.catch(() => {
this.detailLoading = false;

@ -409,11 +409,13 @@
:visible.sync="addDialogVisible"
width="80%"
v-if="addDialogVisible"
>
<selectErpOrder
v-on:closeManuDialog="closeManuDialog"
:orderId="orderId"
:orderAction="billAction"
:curLocInv="curLocInv"
></selectErpOrder>
</el-dialog>
@ -577,6 +579,7 @@ export default {
index: null,
formName: null,
orderId: "",
curLocInv: null,
formMap: {
add: "新增",
edit: "编辑",
@ -1087,6 +1090,7 @@ export default {
importOrder(row) {
this.orderId = row.id;
this.billAction = row.action;
this.curLocInv = row.locStorageCode;
this.addDialogVisible = true;
},
invChange() {

Loading…
Cancel
Save