临时修改

This commit is contained in:
砂糖
2026-04-16 15:50:54 +08:00
parent 440e70ee82
commit 344488f08e
9 changed files with 57 additions and 34 deletions

View File

@@ -308,7 +308,6 @@ export default {
this.getList();
this.loadFurnaces();
this.getMaterialCoils();
this.loadActualWarehouses();
},
methods: {
getList() {
@@ -383,6 +382,7 @@ export default {
coilId: item.coilId
}).then(() => {
this.$message.success('已加入计划');
// anneal-todo: 新增操作事件
this.loadPlanCoils();
}).finally(() => {
this.coilLoading = false;
@@ -512,6 +512,7 @@ export default {
});
this.loading = true;
await inFurnace({ planId: row.planId });
// anneal-todo: 新增操作事件
this.loading = false;
row.status = 2;
row.actualStartTime = new Date();
@@ -540,6 +541,7 @@ export default {
}).then(() => {
this.$message.success('已完成');
this.completeOpen = false;
// anneal-todo: 新增操作事件
this.getList();
this.loadPlanCoils();
}).finally(() => {
@@ -558,6 +560,7 @@ export default {
});
}).then(() => {
this.$message.success('解绑成功');
// anneal-todo: 新增操作事件
this.loadPlanCoils();
});
},