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;