This commit is contained in:
yanran200730
2022-02-18 14:49:13 +08:00
parent e98949990a
commit 09cf11a5fc

View File

@@ -52,7 +52,7 @@
<el-table-column slot="options" width="160px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }">
<div class="table-options">
<el-button type="text" @click="toAudit(row.id)" :disabled="row.auditStatus !== '0'"></el-button>
<el-button type="text" @click="toAudit(row.id)" :disabled="row.auditStatus !== '0'"></el-button>
<el-button type="text" @click="toDetail(row.id)">详情</el-button>
<el-button type="text" @click="remove(row.id)" :disabled="row.auditStatus === '0'">删除</el-button>
</div>