编辑党员认证

This commit is contained in:
shijingjing
2022-11-17 15:02:54 +08:00
parent 2bcba1bdd4
commit e6f016e9cd

View File

@@ -132,7 +132,15 @@ export default {
getDetail() {
this.$instance.post(`/app/appparty/detail?id=${this.user.partyId}`).then(res=> {
if(res?.data) {
this.form = {...res.data}
this.form.id = res.data.id
this.form.name = res.data.name
this.form.idNumber = res.data.idNumber
this.form.phone = res.data.phone
this.form.partyOrgId = res.data.partyOrgId
this.form.partyOrgName = res.data.partyOrgName
this.form.joinPartyTime = res.data.joinPartyTime
this.form.partyType = res.data.partyType
this.form.partyStatus = res.data.partyStatus
}
})
},