style: 更新审核状态的样式以增强可读性

This commit is contained in:
huweihang
2025-12-18 16:40:52 +08:00
parent 148ab93b07
commit 2264a8a6a7

View File

@@ -210,7 +210,7 @@
<el-table-column label="审核状态" prop="status" min-width="110" align="center" sortable="custom">
<template slot-scope="scope">
<span class="common-cell common-cell-right" v-if="scope.row.status == 1">-</span>
<span class="common-cell common-cell-right" v-if="scope.row.status == 2">审核中</span>
<span :class="['common-cell common-cell-right', 'status--audit']" v-if="scope.row.status == 2">审核中</span>
<span :class="['common-cell common-cell-right', 'status--pass']" v-if="scope.row.status == 5">审核通过</span>
<span :class="['common-cell common-cell-right', 'status--reject']" v-if="scope.row.status == 3">审核驳回</span>
</template>
@@ -2222,6 +2222,9 @@ export default {
.status--reject {
color: #F41228;
}
.status--audit {
color: #FF9900;
}
.action-link--primary {
color: #4284F7;