From 3264215d5a0dc4e989439940f658513e2449751b Mon Sep 17 00:00:00 2001 From: lizhixian <18210040298@163.com> Date: Wed, 12 Mar 2025 09:26:34 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0=E7=BB=84=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E6=A1=86=E6=B7=BB=E5=8A=A0clearable=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/nodes-config/components/Condition.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/SimpleProcessDesignerV2/src/nodes-config/components/Condition.vue b/src/components/SimpleProcessDesignerV2/src/nodes-config/components/Condition.vue index d72165460..627333766 100644 --- a/src/components/SimpleProcessDesignerV2/src/nodes-config/components/Condition.vue +++ b/src/components/SimpleProcessDesignerV2/src/nodes-config/components/Condition.vue @@ -12,7 +12,10 @@ - +
条件组关系
@@ -67,7 +70,7 @@ trigger: 'change' }" > - + Date: Wed, 12 Mar 2025 10:09:24 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix=EF=BC=9A=E7=A7=BB=E9=99=A4debugger?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/bpm/model/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/bpm/model/index.ts b/src/api/bpm/model/index.ts index 67b1f2ad6..63b6af6ad 100644 --- a/src/api/bpm/model/index.ts +++ b/src/api/bpm/model/index.ts @@ -31,7 +31,6 @@ export const getModelList = async (name: string | undefined) => { } export const getModel = async (id: string) => { - debugger return await request.get({ url: '/bpm/model/get?id=' + id }) } -- Gitee From 92a1033b063d913407cfae990ee1d2d2d0db464d Mon Sep 17 00:00:00 2001 From: lizhixian <18210040298@163.com> Date: Wed, 12 Mar 2025 17:40:01 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix=EF=BC=9Asimple=E8=AE=BE=E8=AE=A1?= =?UTF-8?q?=E5=99=A8=EF=BC=8C=E6=9D=A1=E4=BB=B6=E8=A7=84=E5=88=99=E5=8F=AA?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=BF=85=E5=A1=AB=E5=AD=97=E6=AE=B5=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E5=87=BA=E7=8E=B0=E6=B5=81=E7=A8=8B=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/FormCreate/src/utils/index.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/FormCreate/src/utils/index.ts b/src/components/FormCreate/src/utils/index.ts index a2b3e67f8..96f196272 100644 --- a/src/components/FormCreate/src/utils/index.ts +++ b/src/components/FormCreate/src/utils/index.ts @@ -35,10 +35,11 @@ export const parseFormFields = ( if (parentTitle) { title = `${parentTitle}.${tempTitle}` } - let required = false - if ($required) { - required = true - } + // TODO @芋艿 simple设计器,只显示必填字段时,会出现流程配置问题。场景:某个字段非发起时必填,而是在某个审批节点必填并且作为条件分支参数 + // let required = false + // if ($required) { + // required = true + // } fields.push({ field, title, -- Gitee