BUG 29468

This commit is contained in:
aixianling
2022-04-29 19:47:51 +08:00
parent 376a4778b8
commit 890cbaa0b9

View File

@@ -210,8 +210,10 @@
<el-table-column slot="options" label="操作" align="center" width="200px"> <el-table-column slot="options" label="操作" align="center" width="200px">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<el-button type="text" @click="viewFamily(row)">详情</el-button> <el-button type="text" @click="viewFamily(row)">详情</el-button>
<el-button type="text" @click="addFamily(row)">编辑</el-button> <template v-if="row.isHousehold==0">
<el-button type="text" @click="delFamily(row)">删除</el-button> <el-button type="text" @click="addFamily(row)">编辑</el-button>
<el-button type="text" @click="delFamily(row)">删除</el-button>
</template>
</template> </template>
</el-table-column> </el-table-column>
</ai-table> </ai-table>