From ef4146be13b56d07ecf1b23949ed585b77035c4d Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Tue, 21 Mar 2023 11:05:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=84=B1=E6=95=8F=E4=BF=A1=E6=81=AF=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E6=9B=B4=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/resiInfo.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/views/components/resiInfo.vue b/src/views/components/resiInfo.vue index db8aa5cb9..c7a0f1482 100644 --- a/src/views/components/resiInfo.vue +++ b/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) }