From 49cb9008848f9d4018382a02162c7a777c7f8932 Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Thu, 5 Feb 2026 11:38:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E9=94=AE=E5=88=A0=E9=99=A4=E5=B7=A5?= =?UTF-8?q?=E5=BA=8F=E6=8E=A5=E5=8F=A3=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/processMainte/processPlanning.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/processManagement/components/processMainte/processPlanning.vue b/src/views/processManagement/components/processMainte/processPlanning.vue index 4585b52..6f941a5 100644 --- a/src/views/processManagement/components/processMainte/processPlanning.vue +++ b/src/views/processManagement/components/processMainte/processPlanning.vue @@ -535,6 +535,7 @@ import { getPartDetail, getProject, getStandardList, + craftBatchRemoval } from '@/api/processManagement/taskProcessing'; import { getPqList } from '@/api/qualityManagement/remindRedeem/remindRedeem'; import { getDictionary } from '@/api/system/dict'; @@ -964,7 +965,7 @@ export default { let deleteIds = node.childNodes.map(child => child.id); console.log('需要删除的子工序ID列表:', deleteIds); // 调用删除API(替换为你的实际API) - await deleteCraft({ id: deleteIds.join(',') }).then(res => { + await craftBatchRemoval({ id: deleteIds.join(',') }).then(res => { this.$message.success('删除成功'); this.getDetails(); });