mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-21 00:36:44 +08:00
style: 更新审核状态的样式以增强可读性
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user