From 248515c74ff01157d6459be24db24d716daf08e6 Mon Sep 17 00:00:00 2001 From: JINGYJ <1458671527@qq.com> Date: Wed, 3 Jul 2024 11:28:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B5=81=E7=A8=8B=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E7=BC=96=E8=BE=91bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processConfiguration/components/updateForm.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/businessManagement/processConfiguration/components/updateForm.vue b/src/views/businessManagement/processConfiguration/components/updateForm.vue index 4dee1be..4a7063d 100644 --- a/src/views/businessManagement/processConfiguration/components/updateForm.vue +++ b/src/views/businessManagement/processConfiguration/components/updateForm.vue @@ -128,13 +128,14 @@ const submitForm = async (formEl: FormInstance | undefined) => { id: processForm.id, flowName: processForm.flowName, remark: processForm.remark, - flowType: "1", + flowType: processForm.flowType, baseIdList: processForm.baseIdList, nodeInfoList: processForm.link.map(item => { return { id: "", userIdList: item.userIdList, order: "", + roleId: item.roleId, nodeName: item.nodeName }; }) @@ -142,7 +143,7 @@ const submitForm = async (formEl: FormInstance | undefined) => { // console.log(createForm); updateProcess(createForm).then(res => { if (res.code === 200) { - message("新建成功", { type: "success" }); + message("修改成功", { type: "success" }); props.closeDrawer(); } });