|
|
@@ -233,14 +233,14 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="audit" label="审核状态" width="100">
|
|
|
<template #default="scope">
|
|
|
- <div style="text-align: center;display: flex;" v-if="scope.row.audit=='4'">
|
|
|
- <el-tag class="ml-2" type="success">已审核</el-tag>
|
|
|
+ <div style="text-align: center;display: flex;color:#67C23A" v-if="scope.row.state=='4'">
|
|
|
+ 已审核
|
|
|
</div>
|
|
|
- <div style="text-align: center;display: flex;" v-if="scope.row.audit=='3'||scope.row.audit==null">
|
|
|
- <el-tag class="ml-2" type="danger">未审核</el-tag>
|
|
|
+ <div style="text-align: center;display: flex;color:#E6A23C" v-if="scope.row.state=='3'||scope.row.state==null">
|
|
|
+ 未审核
|
|
|
</div>
|
|
|
- <div style="text-align: center;display: flex;" v-if="scope.row.audit=='0'">
|
|
|
- <el-tag class="ml-2" type="warning">驳回</el-tag>
|
|
|
+ <div style="text-align: center;display: flex;color:#F56C6C" v-if="scope.row.state=='0'">
|
|
|
+ 驳回
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|