We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e452aa + 1d17c18 commit 77a0801Copy full SHA for 77a0801
src/api/bpm/model/index.ts
@@ -31,7 +31,6 @@ export const getModelList = async (name: string | undefined) => {
31
}
32
33
export const getModel = async (id: string) => {
34
- debugger
35
return await request.get({ url: '/bpm/model/get?id=' + id })
36
37
src/components/SimpleProcessDesignerV2/src/node.ts
@@ -310,6 +310,11 @@ export function useNodeForm(nodeType: NodeType) {
310
showText = `表单内部门负责人`
311
312
313
+ // 审批人自选
314
+ if (configForm.value?.candidateStrategy === CandidateStrategy.APPROVE_USER_SELECT) {
315
+ showText = `审批人自选`
316
+ }
317
+
318
// 发起人自选
319
if (configForm.value?.candidateStrategy === CandidateStrategy.START_USER_SELECT) {
320
showText = `发起人自选`
0 commit comments