审核通过和不通过不显示当前审核人

master
Harry Yang 2023-01-04 15:54:30 +08:00
parent 47621c1700
commit fe16ca4589
2 changed files with 3 additions and 3 deletions
src/main/resources/templates/admin/business

View File

@ -109,7 +109,7 @@
<span>{{scope.row.processType | processType}}</span>
</template>
</el-table-column>
<el-table-column prop="applyPersonName" label="申请人" width="100"></el-table-column>
<el-table-column prop="applyPersonName" label="申请人" width="120"></el-table-column>
<el-table-column prop="status" label="审核状态" width="100">
<template slot-scope="scope">
<span>{{scope.row.status | processStatus}}</span>
@ -117,7 +117,7 @@
</el-table-column>
<el-table-column prop="currentAudit" label="当前审核人" width="100">
<template slot-scope="scope">
<span v-if="scope.row.status!=='audit_passed' || scope.row.status==='audit_not_passed'">{{scope.row.currentAudit}}</span>
<span v-if="scope.row.status!=='audit_passed' && scope.row.status!=='audit_not_passed'">{{scope.row.currentAudit}}</span>
</template>
</el-table-column>
<el-table-column prop="lastUpdateAt" label="最后更新时间" width="170"></el-table-column>

View File

@ -101,7 +101,7 @@
<span>{{scope.row.processType | processType}}</span>
</template>
</el-table-column>
<el-table-column prop="applyPersonName" label="申请人" width="100"></el-table-column>
<el-table-column prop="applyPersonName" label="申请人" width="120"></el-table-column>
<el-table-column prop="status" label="审核状态" width="100">
<template slot-scope="scope">
<span>{{scope.row.status | processStatus}}</span>