feat : 节点参数设置

This commit is contained in:
clay
2024-07-23 19:18:29 +08:00
parent e5452741e9
commit c7866f2e5e
3 changed files with 33 additions and 6 deletions

View File

@@ -69,6 +69,12 @@ const content = computed(() => {
return '发起人自己'
case "DSTI_MATRIX":
return '科创部用户跳过'
case "NO_USER_SKIP":
return '无用户审批,跳过'
case "DSTI_CONTACT_PERSON":
return '下属企业科创部对接人'
case "SUB_LEADER":
return '下属企业领导'
case "SELF_SELECT":
return config.selfSelect.multiple ? '发起人自选多人' : '发起人自选一人'
case "LEADER_TOP":
@@ -115,6 +121,8 @@ const validate = (err) => {
case "SELF_SELECT":
showError.value = !validate_SELF_SELECT(err);
break;
case "DSTI_CONTACT_PERSON":
case "SUB_LEADER":
case "LEADER_TOP":
showError.value = !validate_LEADER_TOP(err);
break;