From 617e9854c6f8d578fe39adad2bc53af139ff60cb Mon Sep 17 00:00:00 2001 From: jianjun Date: Mon, 5 Sep 2022 16:35:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E5=92=8C=E7=96=AB=E8=8B=97?= =?UTF-8?q?=E7=9A=84info?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/visual/command/cpts/popup.vue | 92 +++++++++++++++++++ 1 file changed, 92 insertions(+) diff --git a/src/views/modules/visual/command/cpts/popup.vue b/src/views/modules/visual/command/cpts/popup.vue index b10e8d182..6a0042412 100644 --- a/src/views/modules/visual/command/cpts/popup.vue +++ b/src/views/modules/visual/command/cpts/popup.vue @@ -150,6 +150,62 @@ +
+
核酸检测点信息
+
+ 检测点名称: + {{ info.name || "--" }} +
+
+ 所属组织: + {{ info.orgName || "--" }} +
+
+ 服务时间: + {{ info.serveTime || "--" }} +
+
+ 咨询电话: + {{ info.mobile || "--" }} +
+
+ 地      址: + {{ info.address || "--" }} +
+
+
+
疫苗接种点信息
+
+ 接种点名称: + {{ info.name || "--" }} +
+
+ 接种时间: + {{ info.inoculationDate || "--" }} +
+                + 上午{{ info.moStartTime || "--" }}至{{info.moEndTime || '--'}}  +    下午{{ info.afStartTime || "--" }}至{{info.afEndTime || '--'}} +
+
+
+ 咨询电话: + {{ info.mobile || "--" }} +
+
+ 地      址: + {{ info.address || "--" }} +
+
+
难点痛点
@@ -550,6 +606,14 @@ export default { //来自企事业查询的 await this.loadEnterprisePartrol(item); } + if (placeType === "vaccine_point") { + //来疫苗查询的 + await this.loadVaccinePoint(item); + } + if (placeType === "nucleic_point") { + //来核酸查询的 + await this.loadHesuanPoint(item); + } this.placeType = item.placeType; this.srcItem = item; this.hidden = false; @@ -769,6 +833,34 @@ export default { this.$message.error(msg); } }, + async loadVaccinePoint(info) { + const url = "/epmetuser/icPointVaccinesInoculation/" + info.id; + // const url = "http://yapi.elinkservice.cn/mock/245/gov/org/enterprise/detail" + + const { data, code, msg } = await requestPost(url); + + if (code === 0) { + // debugger + + this.info = JSON.parse(JSON.stringify(data)); + } else { + this.$message.error(msg); + } + }, + async loadHesuanPoint(info) { + const url = "/epmetuser/icPointNucleicMonitoring/" + info.id; + // const url = "http://yapi.elinkservice.cn/mock/245/gov/org/enterprise/detail" + + const { data, code, msg } = await requestPost(url); + + if (code === 0) { + // debugger + + this.info = JSON.parse(JSON.stringify(data)); + } else { + this.$message.error(msg); + } + }, async loadGroupRent(info) { const url = "/gov/org/ichouse/" + info.id;