This commit is contained in:
yanran200730
2022-01-07 10:17:57 +08:00
parent a86910bc6e
commit 22dc407215
2 changed files with 2 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
export default { export default {
name: 'AppVillagerDiscussion', name: 'AppVillagerDiscussion',
label: '民议事', label: '民议事',
props: { props: {
instance: Function, instance: Function,

View File

@@ -43,7 +43,6 @@
<div class="table-options"> <div class="table-options">
<el-button type="text" title="详情" @click="toDetail(row.id)">详情</el-button> <el-button type="text" title="详情" @click="toDetail(row.id)">详情</el-button>
<el-button type="text" title="取消公示" @click="changeStatus(row)" :disabled="row.status !== '1'">结束公示</el-button> <el-button type="text" title="取消公示" @click="changeStatus(row)" :disabled="row.status !== '1'">结束公示</el-button>
<!-- <el-button type="text" @click="toAdd(row.id)">编辑</el-button> -->
<el-button type="text" @click="remove(row.id)">删除</el-button> <el-button type="text" @click="remove(row.id)">删除</el-button>
</div> </div>
</template> </template>
@@ -125,7 +124,7 @@
id: item.id id: item.id
}).then(res => { }).then(res => {
if (res && res.code == 0) { if (res && res.code == 0) {
this.$message.success('结束公示') this.$message.success('结束公示成功')
this.getList() this.getList()
} }
}) })