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) { becomeFullMembe(id) {
this.instance.post(`/app/apppartydevelop/transform?id=${id}`).then(res=> { this.$confirm('确定将该党员转为正式党员?').then(() => {
if(res.code == 0) { this.instance.post(`/app/apppartydevelop/transform?id=${id}`).then(res=> {
this.$message.success('成功转为正式党员!') if(res.code == 0) {
this.getList() this.$message.success('成功转为正式党员!')
} this.getList()
}
})
}) })
}, },