|
|
@@ -56,45 +56,19 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column min-width="110" align="center" prop="Status" label="审核状态" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-alert v-if="scope.row.Status=='0' || scope.row.Status==''" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待提交" type="warning">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='1'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待初审" type="warning">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='-1'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="初审未通过" type="error">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='2'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待复审" type="warning">
|
|
|
- </el-alert>
|
|
|
- <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=='3'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待专业处室分办" type="warning">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='4'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待专业处室审批" type="warning">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='-4'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="专业处室审批未通过" type="error">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='5'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待集中评审" type="warning">
|
|
|
- </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=='6'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待缴费" type="warning">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='7'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="待入库" type="warning">
|
|
|
- </el-alert>
|
|
|
- <el-alert v-if="scope.row.Status=='8'" :closable="false" style="background:rgba(255,255,255,0.2)"
|
|
|
- title="已入库" type="success">
|
|
|
- </el-alert>
|
|
|
+ <span v-if="scope.row.Status=='0' || scope.row.Status==''" style="color:#E6A23C">待提交</span>
|
|
|
+ <span v-if="scope.row.Status=='1'" style="color:#E6A23C">待初审</span>
|
|
|
+ <span v-if="scope.row.Status=='-1'" style="color:#F56C6C">初审未通过</span>
|
|
|
+ <span v-if="scope.row.Status=='2'" style="color:#E6A23C">待复审</span>
|
|
|
+ <span v-if="scope.row.Status=='-2'" style="color:#F56C6C">复审未通过</span>
|
|
|
+ <span v-if="scope.row.Status=='3'" style="color:#E6A23C">待专业处室分办</span>
|
|
|
+ <span v-if="scope.row.Status=='4'" style="color:#E6A23C">待专业处室审批</span>
|
|
|
+ <span v-if="scope.row.Status=='-4'" style="color:#F56C6C">专业处室审批未通过</span>
|
|
|
+ <span v-if="scope.row.Status=='5'" style="color:#E6A23C">待集中评审</span>
|
|
|
+ <span v-if="scope.row.Status=='-5'" style="color:#F56C6C">集中评审未通过</span>
|
|
|
+ <span v-if="scope.row.Status=='6'" style="color:#E6A23C">待缴费</span>
|
|
|
+ <span v-if="scope.row.Status=='7'" style="color:#E6A23C">待入库</span>
|
|
|
+ <span v-if="scope.row.Status=='8'" style="color:#67C23A">已入库</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column v-for="column in tableColumns" :key="column.Id"
|