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

master
Harry Yang 2023-01-04 15:53:34 +08:00
parent 05d2baaf2d
commit 47621c1700
1 changed files with 3 additions and 1 deletions

View File

@ -116,7 +116,9 @@
</template>
</el-table-column>
<el-table-column prop="currentAudit" label="当前审核人" width="100">
<span v-if="scope.row.status!=='audit_passed' || scope.row.status==='audit_not_passed'">{{cope.row.currentAudit}}</span>
<template slot-scope="scope">
<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>