diff --git a/src/api/bpm/model/index.ts b/src/api/bpm/model/index.ts index 67b1f2ad6dc61a3c2ac3feadb79ed98e46cdf98e..63b6af6add35259acad654833d9253c63716cc13 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 }) } diff --git a/src/components/SimpleProcessDesignerV2/src/node.ts b/src/components/SimpleProcessDesignerV2/src/node.ts index e3ac7c263d4a0ef31a4027b2753ef7b283b09bce..5b754bfac57564a34094640b9b8095e2ae4c151a 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 = `发起人自选`