|
@@ -379,6 +379,13 @@
|
|
|
<span v-if="scope.row.status == 0 || scope.row.status == 3">{{ statusTxt[scope.row.status] }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="reviewProcess" :label="'审核流程'" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.reviewProcess == 0">待第一审核人审核</span>
|
|
|
+ <span v-if="scope.row.reviewProcess == 1">待第二审核人审核</span>
|
|
|
+ <span v-if="scope.row.reviewProcess == 2">审核完成</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<!-- <el-table-column prop="denyReason" :label="$t('dismissreason')" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<span style="font-size:12px;">{{scope.row.denyReason}}</span>
|