Skip to content

Commit 9e5726d

Browse files
committed
fix:simple设计器缺少“审批人自选“条件
1 parent 0e452aa commit 9e5726d

File tree

1 file changed

+5
-0
lines changed
  • src/components/SimpleProcessDesignerV2/src

1 file changed

+5
-0
lines changed

src/components/SimpleProcessDesignerV2/src/node.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,11 @@ export function useNodeForm(nodeType: NodeType) {
310310
showText = `表单内部门负责人`
311311
}
312312

313+
// 审批人自选
314+
if (configForm.value?.candidateStrategy === CandidateStrategy.APPROVE_USER_SELECT) {
315+
showText = `审批人自选`
316+
}
317+
313318
// 发起人自选
314319
if (configForm.value?.candidateStrategy === CandidateStrategy.START_USER_SELECT) {
315320
showText = `发起人自选`

0 commit comments

Comments
 (0)