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 > + + + +