diff --git a/src/views/modules/user/party-review.vue b/src/views/modules/user/party-review.vue index 2eca9ac..838fb73 100644 --- a/src/views/modules/user/party-review.vue +++ b/src/views/modules/user/party-review.vue @@ -56,6 +56,16 @@

+ + + + + + + { + this.$http.get(`/app-user/usertag/partyTag`).then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg) } this.tagOptions = res.data + // this.tagOptions =[ + // {id:"11125",tagName:"党员"}, + // {id:"11124",tagName:"入党积极分子"}, + // {id:"11123",tagName:"双认证党员"}, + // {id:"11122",tagName:"基层干部"}, + // {id:"11121",tagName:"书记"} + // ] }).catch(() => { }) }, // 获取信息 @@ -179,6 +200,9 @@ export default { } this.dataForm.partyFlag = '1' // 默认是党员 this.dataForm.tagIds = [] + this.dataForm.partyFlag = '' + this.dataForm.tagIds = '' + this.dataForm.partyTagIds = [] }).catch(() => { }) this.$http.get(`/app-user/usergrid/listUserGrid/${this.dataForm.id}`).then(({ data: res }) => { if (res.code !== 0) { @@ -203,6 +227,7 @@ export default { remark: this.dataForm.remark, realName: this.dataForm.realName, mobile: this.dataForm.mobile, + partyTagIds: this.dataForm.partyTagIds, identityNo: this.dataForm.identityNo } this.$http[!this.dataForm.id ? 'post' : 'post']('/app-user/user/partyReview/', postData).then(({ data: res }) => {