This commit is contained in:
yanran200730
2022-12-23 16:08:27 +08:00
parent 7e51b443c2
commit c8429cac20
2 changed files with 1 additions and 2 deletions

View File

@@ -354,7 +354,6 @@
},
filterNode(value, data) {
console.log(data)
if (!value) return true
return data.fileName.indexOf(value) !== -1
},

View File

@@ -52,7 +52,7 @@
<el-table-column slot="options" width="120px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }">
<div class="table-options">
<el-button type="text" @click="audit(row.id)" v-if="row.examineStatus === '0'">审核</el-button>
<el-button type="text" @click="audit(row.id)" v-if="row.examineStatus === '0'" :disabled="info.status === '1'">审核</el-button>
<el-button type="text" @click="toDetail(row.id)">详情</el-button>
</div>
</template>