This commit is contained in:
shijingjing
2023-01-06 17:00:44 +08:00
parent af3ad4ff63
commit 66ad57066a

View File

@@ -172,11 +172,13 @@ export default {
},
becomeFullMembe(id) {
this.instance.post(`/app/apppartydevelop/transform?id=${id}`).then(res=> {
if(res.code == 0) {
this.$message.success('成功转为正式党员!')
this.getList()
}
this.$confirm('确定将该党员转为正式党员?').then(() => {
this.instance.post(`/app/apppartydevelop/transform?id=${id}`).then(res=> {
if(res.code == 0) {
this.$message.success('成功转为正式党员!')
this.getList()
}
})
})
},