This commit is contained in:
liushiwei
2023-08-09 03:17:34 +08:00
parent a7f162894e
commit aa1e1b8b38

View File

@@ -35,6 +35,7 @@
<template v-slot="{ row }">
<div class="table-options">
<el-button type="text" @click="edit(row)">修改姓名</el-button>
<el-button type="text" @click="remove(row)">删除</el-button>
</div>
</template>
</el-table-column>
@@ -136,6 +137,19 @@
this.isShowForm = true
},
remove (e) {
this.$confirm('确定要删除该条数据?', '温馨提示', {
type: 'warning'
}).then(() => {
this.$http.post(`/api/malluser/delWxuser?id=${e.id}`).then(res => {
if (res.code == 0) {
this.$message.success('删除成功!')
this.getList()
}
})
})
},
collection (id, isFavorite) {
this.$confirm(isFavorite === '0' ? '确定收藏该文章?' : '确定取消收藏?', '温馨提示', {
confirmButtonText: '确定',