流程相关-分公司项目部新增

This commit is contained in:
lSun 2024-10-21 13:32:38 +08:00
parent 638ef33b6f
commit b26efdb596
1 changed files with 5 additions and 5 deletions

View File

@ -51,9 +51,9 @@
<el-table-column label="人员名称" align="center" prop="userName" :show-overflow-tooltip="true"/> <el-table-column label="人员名称" align="center" prop="userName" :show-overflow-tooltip="true"/>
<el-table-column label="审批状态" align="center" prop="reviewerStatus" :show-overflow-tooltip="true"> <el-table-column label="审批状态" align="center" prop="reviewerStatus" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.reviewerStatus == 0 && scope.row.userName != null ">待审核</span> <span v-if="scope.row.reviewerStatus == 0">待审核</span>
<span v-else-if="scope.row.reviewerStatus == 1 && scope.row.userName != null ">已审核</span> <span v-else-if="scope.row.reviewerStatus == 1">已审核</span>
<span v-else-if="scope.row.reviewerStatus == 2 && scope.row.userName != null ">未通过</span> <span v-else-if="scope.row.reviewerStatus == 2">未通过</span>
</template> </template>
</el-table-column> </el-table-column>
@ -64,7 +64,7 @@
size="mini" size="mini"
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
v-if="scope.row.userName == null" v-if="scope.row.reviewerStatus == null"
@click="handleAllocation(scope.row)" @click="handleAllocation(scope.row)"
v-hasPermi="['dept:role:edit']" v-hasPermi="['dept:role:edit']"
>分配人员 >分配人员
@ -73,7 +73,7 @@
size="mini" size="mini"
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
v-if="scope.row.userName != null" v-if="scope.row.reviewerStatus == 1 || scope.row.reviewerStatus == 2"
@click="handleChange(scope.row)" @click="handleChange(scope.row)"
v-hasPermi="['dept:role:edit']" v-hasPermi="['dept:role:edit']"
>人员变更 >人员变更