Commit 868b9f33 authored by renjintao's avatar renjintao

aps

parent c6d73e7b
......@@ -52,7 +52,7 @@ export default {
insertlModal: false,
rowIndex: null,
curId: 0,
gridHeight: 45,
gridHeight: 50,
columns: [
{ key: "id", title: this.l("id"), hide: true, align: "left" },
{ title: " ", width: 130 },
......@@ -347,9 +347,9 @@ export default {
};
Api.getbyorderid(params).then(res => {
if (res.success) {
this.gridHeight = 50;
this.gridHeight = (res.result.length +1) * 48;
this.data1 = res.result;
this.gridHeight = 45;
this.gridHeight = (res.result.length + 1) * 48;
}
});
},
......
......@@ -269,6 +269,7 @@ export default {
Api.recoveryoptasksimluate(params).then(r => {
if (r.success) {
this.$Message.success("恢复成功");
this.loadList();
}
});
},
......@@ -285,6 +286,7 @@ export default {
Api.shiftoutapspool(params).then(r => {
if (r.success) {
this.$Message.success("移出排产池操作成功");
this.loadList();
}
});
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment