Commit 9e5726d5 by smallNorthLee

fix:simple设计器缺少“审批人自选“条件

parent 0e452aa1
...@@ -310,6 +310,11 @@ export function useNodeForm(nodeType: NodeType) { ...@@ -310,6 +310,11 @@ export function useNodeForm(nodeType: NodeType) {
showText = `表单内部门负责人` showText = `表单内部门负责人`
} }
// 审批人自选
if (configForm.value?.candidateStrategy === CandidateStrategy.APPROVE_USER_SELECT) {
showText = `审批人自选`
}
// 发起人自选 // 发起人自选
if (configForm.value?.candidateStrategy === CandidateStrategy.START_USER_SELECT) { if (configForm.value?.candidateStrategy === CandidateStrategy.START_USER_SELECT) {
showText = `发起人自选` showText = `发起人自选`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment