BUG 27835

This commit is contained in:
aixianling
2022-03-01 12:17:18 +08:00
parent c6b293d4bd
commit 4ac2f5a134

View File

@@ -39,8 +39,8 @@
<template slot-scope="{row}">
<el-button type="text" @click="showDetail(row.id)">详情</el-button>
<template v-if="isFinanceUser">
<el-button type="text" @click="handleEdit(row.id)">编辑</el-button>
<el-button type="text" @click="handleDelete(row.id)">删除</el-button>
<el-button type="text" @click="handleEdit(row.id)" v-if="row.status==2">编辑</el-button>
<el-button type="text" @click="handleDelete(row.id)" v-if="['2','1'].includes(row.status)">删除</el-button>
</template>
</template>
</el-table-column>