| | |
| | | <el-table-column prop="id" label="序号" width="70" /> |
| | | <el-table-column prop="name" label="通知" width="500" /> |
| | | <el-table-column prop="state" label="状态" #default="scope"> |
| | | <span style="color: #ff6d00" v-if="scope.row.state == 'WaitAudit'">待审核</span> |
| | | <span style="color: #019e58" v-if="scope.row.state == 'WaitAudit'">待审核</span> |
| | | <span style="color: #67c23a" v-if="scope.row.state == 'Normal'">已通过</span> |
| | | <span style="color: red" v-if="scope.row.state == 'Reject'">已拒绝</span> |
| | | </el-table-column> |
| | |
| | | color: #333; |
| | | line-height: 30px; |
| | | text-align: left; |
| | | border-left: 6px solid #ff6c00; |
| | | border-left: 6px solid #019e58; |
| | | padding-left: 10px; |
| | | } |
| | | } |