feat : 科创部直接跳过审批节点

This commit is contained in:
clay
2024-07-19 14:22:17 +08:00
parent 9783ca8506
commit bd01e4c94b
3 changed files with 6 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ export const APPROVAL_PROPS = {
assignedUser: [] //审批人列表
},
matrixApproval: true,
dstiMatrix: false,
skipSelf: true,
timeLimit: { //边界事件
timeout: { //超时提醒时间

View File

@@ -101,6 +101,9 @@
<!-- <i class="el-icon-question" style="margin-left: 10px; font-size: medium; color: #b0b0b1"></i>-->
<!-- </el-tooltip>-->
<!-- </el-form-item>-->
<el-form-item label="科创部矩阵" prop="text">
<el-switch inactive-text="审批" active-text="跳过" v-model="nodeProps.dstiMatrix"></el-switch>
</el-form-item>
<el-form-item label="是否使用矩阵审批" prop="text">
<el-switch inactive-text="不用" active-text="使用" v-model="nodeProps.matrixApproval"></el-switch>
</el-form-item>

View File

@@ -67,6 +67,8 @@ const content = computed(() => {
}
case "SELF":
return '发起人自己'
case "DSTI_MATRIX":
return '科创部用户跳过'
case "SELF_SELECT":
return config.selfSelect.multiple ? '发起人自选多人' : '发起人自选一人'
case "LEADER_TOP":