流程相关-分公司项目部新增
This commit is contained in:
parent
f31a079660
commit
62087c1338
|
|
@ -52,9 +52,11 @@
|
||||||
<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">待审核</span>
|
<span v-if="scope.row.userName == null "></span>
|
||||||
<span v-else-if="scope.row.reviewerStatus == 1">已审核</span>
|
<span v-else-if="scope.row.reviewerStatus == 0 ">待审核</span>
|
||||||
<span v-else-if="scope.row.reviewerStatus == 2">未通过</span>
|
<span v-else-if="scope.row.reviewerStatus == 1 ">已审核</span>
|
||||||
|
<span v-else-if="scope.row.reviewerStatus == 2 ">未通过</span>
|
||||||
|
<span v-else></span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
icon="el-icon-edit"
|
icon="el-icon-edit"
|
||||||
v-if="scope.row.reviewerStatus == null"
|
v-if="scope.row.userName == null"
|
||||||
@click="handleAllocation(scope.row)"
|
@click="handleAllocation(scope.row)"
|
||||||
v-hasPermi="['dept:role:edit']"
|
v-hasPermi="['dept:role:edit']"
|
||||||
>分配人员</el-button>
|
>分配人员</el-button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue