|
|
|
@ -1739,18 +1739,15 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
async handleTuomin (type) { |
|
|
|
const url = "/data/aggregator/epmetuser/detailByType"; |
|
|
|
const url = `/actual/base/residentBaseInfo/getResiUserInfo/${this.resiId}`; |
|
|
|
|
|
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
|
id: this.resiId, |
|
|
|
type: "checkIcResiUser", |
|
|
|
}); |
|
|
|
const { data, code, msg } = await requestPost(url); |
|
|
|
if (code === 0) { |
|
|
|
if (type === 'mobile') { |
|
|
|
this.$set(this.resiDetailObj, 'showMobile', data.mobile) |
|
|
|
} |
|
|
|
if (type === 'idCard') { |
|
|
|
this.$set(this.resiDetailObj, 'showIdNum', data.idCard) |
|
|
|
this.$set(this.resiDetailObj, 'showIdNum', data.idNum) |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|