|
@@ -27,10 +27,14 @@
|
|
<el-table-column label="操作" align="center">
|
|
<el-table-column label="操作" align="center">
|
|
<template slot-scope="scoped">
|
|
<template slot-scope="scoped">
|
|
<el-tooltip content="审核通过" placement="bottom" effect="light">
|
|
<el-tooltip content="审核通过" placement="bottom" effect="light">
|
|
- <el-button type="text" size="small" @click="handleEdit(scoped.row)"><i class="el-icon-check"></i></el-button>
|
|
|
|
|
|
+ <el-button type="text" size="small" @click="handleEdit(scoped.row)" v-if="scoped.row.status == '0'"
|
|
|
|
+ ><i class="el-icon-check"></i
|
|
|
|
+ ></el-button>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip content="审核拒绝" placement="bottom" effect="light">
|
|
<el-tooltip content="审核拒绝" placement="bottom" effect="light">
|
|
- <el-button type="text" size="small" @click="handleshibai(scoped.row)"><i class="el-icon-close"></i></el-button>
|
|
|
|
|
|
+ <el-button type="text" size="small" @click="handleshibai(scoped.row)" v-if="scoped.row.status == '0'"
|
|
|
|
+ ><i class="el-icon-close"></i
|
|
|
|
+ ></el-button>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip content="删除" placement="bottom" effect="light">
|
|
<el-tooltip content="删除" placement="bottom" effect="light">
|
|
<el-button type="text" size="small" @click="handleDelete(scoped.row)"><i class="el-icon-delete"></i></el-button>
|
|
<el-button type="text" size="small" @click="handleDelete(scoped.row)"><i class="el-icon-delete"></i></el-button>
|