feat : 打印

This commit is contained in:
clay
2024-08-03 20:55:26 +08:00
parent 5111897d13
commit 2634e9b70c
7 changed files with 143 additions and 28 deletions

View File

@@ -102,6 +102,7 @@
<!-- <i class="el-icon-question" style="margin-left: 10px; font-size: medium; color: #b0b0b1"></i>-->
<!-- </el-tooltip>-->
<!-- </el-form-item>-->
<span v-if="nodeProps.assignedType!=='PROJECT_LEADER'">
<span v-if="nodeProps.assignedType !== 'SUB_LEADER'">
<el-form-item label="是否使用矩阵审批" prop="matrixApproval">
<el-switch inactive-text="不用" active-text="使用" v-model="nodeProps.matrixApproval"></el-switch>
@@ -129,6 +130,8 @@
<el-switch inactive-text="不审批" active-text="审批" v-model="nodeProps.president"></el-switch>
</el-form-item>
</span>
</span>
<!-- <el-form-item label="重复跳过" prop="duplicateApproval">-->
<!-- <el-switch inactive-text="" active-text=""-->
<!-- v-model="nodeProps.duplicateApproval"></el-switch>-->
@@ -273,6 +276,7 @@ const approvalTypes = reactive([
{name: "发起人自己", type: "SELF"},
{name: "下属企业领导", type: "SUB_LEADER"},
{name: "下属企业科创部对接人", type: "DSTI_CONTACT_PERSON"},
{name: "项目负责人", type: "PROJECT_LEADER"},
// {name: "表单内联系人", type: "FORM_USER"},
// {name: "矩阵审批", type: "MATRIX_APPROVAL"},
])