From 849f2becd8276836f128970688132a45e58a1217 Mon Sep 17 00:00:00 2001 From: jason <2667446@qq.com> Date: Tue, 5 Aug 2025 22:58:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20[BPM=20=E5=B7=A5=E4=BD=9C=E6=B5=81]=20S?= =?UTF-8?q?imple=20=E6=A8=A1=E5=9E=8B=E6=96=B0=E5=A2=9E=E8=B7=B3=E8=BF=87?= =?UTF-8?q?=E8=A1=A8=E8=BE=BE=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nodes-config/user-task-node-config.vue | 18 +++++++++++++++--- .../components/simple-process-design/consts.ts | 2 ++ .../simple-process-design/helpers.ts | 1 + apps/web-antd/src/utils/constants.ts | 8 ++++++-- .../detail/modules/time-line.vue | 9 ++++++++- 5 files changed, 32 insertions(+), 6 deletions(-) diff --git a/apps/web-antd/src/components/simple-process-design/components/nodes-config/user-task-node-config.vue b/apps/web-antd/src/components/simple-process-design/components/nodes-config/user-task-node-config.vue index 66e6ed5ad..5dc75bacb 100644 --- a/apps/web-antd/src/components/simple-process-design/components/nodes-config/user-task-node-config.vue +++ b/apps/web-antd/src/components/simple-process-design/components/nodes-config/user-task-node-config.vue @@ -359,7 +359,8 @@ async function saveConfig() { currentNode.value.signEnable = configForm.value.signEnable; // 审批意见 currentNode.value.reasonRequire = configForm.value.reasonRequire; - + // 跳过表达式 + currentNode.value.skipExpression = configForm.value.skipExpression; currentNode.value.showText = getShowText(); drawerApi.close(); return true; @@ -443,7 +444,8 @@ function showUserTaskNodeConfig(node: SimpleFlowNode) { configForm.value.signEnable = node?.signEnable ?? false; // 7. 审批意见 configForm.value.reasonRequire = node?.reasonRequire ?? false; - + // 8. 跳过表达式 + configForm.value.skipExpression = node?.skipExpression ?? ''; drawerApi.open(); } @@ -850,7 +852,7 @@ onMounted(() => { label="流程表达式" name="expression" > -