From 9e04baddeac81d1acc5802f0d7bfa8fccf2f7be0 Mon Sep 17 00:00:00 2001 From: zhangdi <1104545947@qq.com> Date: Wed, 22 Apr 2026 11:53:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E4=BA=A7=E5=BC=82=E5=B8=B8=E5=A4=84?= =?UTF-8?q?=E7=90=86=E6=8E=A5=E5=8F=A3=E4=BC=A0=E5=8F=82=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/productionSchedulingPlan/scheduling.js | 5 +++-- .../productionSchedulingPlan/schedulingException/index.vue | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/api/productionSchedulingPlan/scheduling.js b/src/api/productionSchedulingPlan/scheduling.js index 5c21aa27..d3e7ad55 100644 --- a/src/api/productionSchedulingPlan/scheduling.js +++ b/src/api/productionSchedulingPlan/scheduling.js @@ -54,8 +54,9 @@ export const selectEquip = row => { // 排产恢复 recoveryUpdate export const recoveryUpdate = row => { return request({ - url: '/blade-scheduling/workOrder/saveWorkOrderFromBak/' + row, - method: 'get', + url: '/blade-scheduling//yieldOrder/update', + method: 'post', + data: row, // data: row, }); }; diff --git a/src/views/productionSchedulingPlan/schedulingException/index.vue b/src/views/productionSchedulingPlan/schedulingException/index.vue index 1bdab738..9e4fdbb4 100644 --- a/src/views/productionSchedulingPlan/schedulingException/index.vue +++ b/src/views/productionSchedulingPlan/schedulingException/index.vue @@ -310,7 +310,7 @@ export default { }) .then(() => { this.loading = true; - return recoveryUpdate(row.id); + return recoveryUpdate({id:row.id,status:10003}); }) .then(() => { this.onLoad(this.page);