发展党员转正

This commit is contained in:
shijingjing
2023-01-06 16:27:31 +08:00
parent 7850eb9bb9
commit af3ad4ff63

View File

@@ -86,7 +86,7 @@
<el-button type="text" @click="toDetail(row.id)">详情</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="becomeFullMembe(row.id)">转为正式</el-button>
<!-- <el-button type="text" @click="toAdd(row.id)">编辑</el-button>
<el-button type="text" @click="showNeighbourSetting(row.id)"
v-if="permissions('app_apppartyfourresident_detail')">四邻设置
@@ -171,6 +171,15 @@ export default {
this.getList(e.id)
},
becomeFullMembe(id) {
this.instance.post(`/app/apppartydevelop/transform?id=${id}`).then(res=> {
if(res.code == 0) {
this.$message.success('成功转为正式党员!')
this.getList()
}
})
},
onSearch(v) {
this.orgTree.filter(v)
},