From 9e5726d5990b1e8f4bdda2e4e1cbcff8436db5f6 Mon Sep 17 00:00:00 2001 From: smallNorthLee <18210040298@163.com> Date: Tue, 11 Mar 2025 21:58:56 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix=EF=BC=9Asimple=E8=AE=BE=E8=AE=A1?= =?UTF-8?q?=E5=99=A8=E7=BC=BA=E5=B0=91=E2=80=9C=E5=AE=A1=E6=89=B9=E4=BA=BA?= =?UTF-8?q?=E8=87=AA=E9=80=89=E2=80=9C=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SimpleProcessDesignerV2/src/node.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/SimpleProcessDesignerV2/src/node.ts b/src/components/SimpleProcessDesignerV2/src/node.ts index e3ac7c263..5b754bfac 100644 --- a/src/components/SimpleProcessDesignerV2/src/node.ts +++ b/src/components/SimpleProcessDesignerV2/src/node.ts @@ -310,6 +310,11 @@ export function useNodeForm(nodeType: NodeType) { showText = `表单内部门负责人` } + // 审批人自选 + if (configForm.value?.candidateStrategy === CandidateStrategy.APPROVE_USER_SELECT) { + showText = `审批人自选` + } + // 发起人自选 if (configForm.value?.candidateStrategy === CandidateStrategy.START_USER_SELECT) { showText = `发起人自选` -- Gitee From 1d17c18f418c15a4abdd1375382650a21b8a615b Mon Sep 17 00:00:00 2001 From: lizhixian <18210040298@163.com> Date: Wed, 12 Mar 2025 09:00:15 +0800 Subject: [PATCH 2/2] =?UTF-8?q?remove=EF=BC=9A=20=E7=A7=BB=E9=99=A4debugge?= =?UTF-8?q?r?= 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