Browse Source

脱敏信息接口更换

V1.0
mk 3 years ago
parent
commit
ef4146be13
  1. 9
      src/views/components/resiInfo.vue

9
src/views/components/resiInfo.vue

@ -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)
}

Loading…
Cancel
Save