|
|
@@ -58,24 +58,12 @@
|
|
|
</el-table-column> -->
|
|
|
<el-table-column sortable min-width="110" align="center" prop="Status" label="审核状态">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-alert v-if="scope.row.Status=='2'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="初审未通过" type="error">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='4'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="专业审核通过" type="success">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='0'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="已申请" type="info">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='1'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="初审通过" type="success">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='5'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="专业审核未通过" type="error">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='3'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="业务处已接收" type="warning">
|
|
|
- </el-alert>
|
|
|
+ <span v-if="scope.row.Status=='0'" style="color:#E6A23C">已申请</span>
|
|
|
+ <span v-if="scope.row.Status=='2'" style="color:#F56C6C">初审未通过</span>
|
|
|
+ <span v-if="scope.row.Status=='1'" style="color:#E6A23C">待专业处室分办</span>
|
|
|
+ <span v-if="scope.row.Status=='3'" style="color:#E6A23C">待专业处室审批</span>
|
|
|
+ <span v-if="scope.row.Status=='5'" style="color:#F56C6C">专业处室审批未通过</span>
|
|
|
+ <span v-if="scope.row.Status=='4'" style="color:#67C23A">专业审核通过</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="ApplyTime" sortable min-width="130" label="年审到期日期" align="center" show-overflow-tooltip>
|