From 6d9dd432ade82c7a3bd4925c3dd919d81963eab6 Mon Sep 17 00:00:00 2001 From: jiangyy Date: Fri, 4 Nov 2022 16:12:11 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AF=E8=A7=86=E5=8C=96=E8=84=B1=E6=95=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../epidemic/travelPanshi/travelPanshi.vue | 3 +- .../zhongdianxingcheng/detail.vue | 32 +++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/src/views/modules/base/epidemic/travelPanshi/travelPanshi.vue b/src/views/modules/base/epidemic/travelPanshi/travelPanshi.vue index c89650f87..b0f12aa69 100644 --- a/src/views/modules/base/epidemic/travelPanshi/travelPanshi.vue +++ b/src/views/modules/base/epidemic/travelPanshi/travelPanshi.vue @@ -692,7 +692,8 @@ export default { name: item.name, mobile: item.realMobile, idCard: item.realIdCard, - attentionType: 2 + attentionType: 2, + isolatedState: item.isolateType } }) } diff --git a/src/views/modules/visual/communityGovern/zhongdianxingcheng/detail.vue b/src/views/modules/visual/communityGovern/zhongdianxingcheng/detail.vue index 673928651..ccb017b03 100644 --- a/src/views/modules/visual/communityGovern/zhongdianxingcheng/detail.vue +++ b/src/views/modules/visual/communityGovern/zhongdianxingcheng/detail.vue @@ -7,6 +7,12 @@ 详情 +
+ 显示脱敏信息 +
+
@@ -117,7 +123,22 @@ export default { }, methods: { + async handleTuomin () { + const url = "/data/aggregator/epmetuser/detailByType"; + + const { data, code, msg } = await requestPost(url, { + id: this.detailId, + type: "routeFollow", + }); + if (code === 0) { + this.$set(this.info, 'mobile', data.mobile) + this.$set(this.info, 'idCard', data.idCard) + } else { + this.$message.error(msg); + } + + }, handleClose () { this.$emit("close"); }, @@ -161,3 +182,14 @@ export default { src="@/assets/scss/modules/visual/issue-info.scss" scoped > + + + +