|
@@ -83,12 +83,12 @@
|
|
|
prop="scope"
|
|
prop="scope"
|
|
|
label="审核状态">
|
|
label="审核状态">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
- <el-tag v-if="scope.row.status === 1" :type="'success'" disable-transitions>
|
|
|
|
|
- 审核通过
|
|
|
|
|
- </el-tag>
|
|
|
|
|
- <el-tag v-else-if="scope.row.status === 2" :type="'warning'" disable-transitions>
|
|
|
|
|
|
|
+ <el-tag v-if="scope.row.status === 1" :type="'warning'" disable-transitions>
|
|
|
审核中
|
|
审核中
|
|
|
</el-tag>
|
|
</el-tag>
|
|
|
|
|
+ <el-tag v-else-if="scope.row.status === 2" :type="'success'" disable-transitions>
|
|
|
|
|
+ 审核通过
|
|
|
|
|
+ </el-tag>
|
|
|
<el-tag v-else :type="'danger'" disable-transitions>
|
|
<el-tag v-else :type="'danger'" disable-transitions>
|
|
|
审核未通过
|
|
审核未通过
|
|
|
</el-tag>
|
|
</el-tag>
|