|
@@ -68,16 +68,16 @@
|
|
|
<div class="mymain-container">
|
|
|
<div class="table">
|
|
|
<el-table @selection-change="selectionChangeFn" v-loading="listLoading" :data="dataList" element-loading-text="Loading" border fit highlight-current-row stripe show-summary :summary-method="$getSummaries">
|
|
|
- <el-table-column :selectable='selectableFn' align="center" type="selection" width="100" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column v-if="$checkBtnRole('del', $route.meta.roles)" :selectable='selectableFn' align="center" type="selection" width="51" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column align="left" label="状态" prop="examineStatus" min-width="160" show-overflow-tooltip v-if="!isCustomer">
|
|
|
<template slot-scope="scope">
|
|
|
<el-tag v-show="scope.row.examineStatus == 'SAVE'">保存</el-tag>
|
|
|
- <el-tag v-show="scope.row.examineStatus == 'WAIT'">待审核</el-tag>
|
|
|
- <el-tag v-show="scope.row.examineStatus == 'OK_ONE'">初审通过</el-tag>
|
|
|
- <el-tag v-show="scope.row.examineStatus == 'FAIL_ONE'">初审不通过</el-tag>
|
|
|
- <el-tag v-show="scope.row.examineStatus == 'OK'">复核通过</el-tag>
|
|
|
- <el-tag v-show="scope.row.examineStatus == 'FAIL'">不通过</el-tag>
|
|
|
- <el-tag v-show="scope.row.examineStatus == 'CLOSE'">已关闭</el-tag>
|
|
|
+ <el-tag v-show="scope.row.examineStatus == 'WAIT'" type="warning">待审核</el-tag>
|
|
|
+ <el-tag v-show="scope.row.examineStatus == 'OK_ONE'" type="success">初审通过</el-tag>
|
|
|
+ <el-tag v-show="scope.row.examineStatus == 'FAIL_ONE'" type="danger">初审不通过</el-tag>
|
|
|
+ <el-tag v-show="scope.row.examineStatus == 'OK'" type="success">复核通过</el-tag>
|
|
|
+ <el-tag v-show="scope.row.examineStatus == 'FAIL'" type="danger">不通过</el-tag>
|
|
|
+ <el-tag v-show="scope.row.examineStatus == 'CLOSE'" type="info">已关闭</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column v-if="isCustomer" align="left" label="是否确认" prop="customerIsConfirm" min-width="160" show-overflow-tooltip>
|