From a22aa1086eeef39a26cc161326ce09cd183185ea Mon Sep 17 00:00:00 2001
From: liuyg <liuyg@qq.com>
Date: Fri, 04 Mar 2022 15:57:47 +0800
Subject: [PATCH] 3.3 1.自定义标签,退出后自动清除 2.自定义标签,转换二维码的数据格式ok,移动端对接二维码ok, 3.自定义标签点击移动到指定位置 ok 4.面板自适应高度 4.更换定位依赖,自定义标签扫码入移动端可以定位并显示路线

---
 src/components/mobilePopupOur/index.vue |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/components/mobilePopupOur/index.vue b/src/components/mobilePopupOur/index.vue
index 0252535..6a6f6b6 100644
--- a/src/components/mobilePopupOur/index.vue
+++ b/src/components/mobilePopupOur/index.vue
@@ -113,7 +113,7 @@
       this.getListSearchMethod(this.mBigPopup.value);
       return;
     }
-    this.choiceMain = this.popupOurOpenData.qurey; // 进入的主题:列:机构单位,社区建筑
+    this.choiceMain = this.popupOurOpenData.qurey; // 进入的主题:列:机构单位,校区建筑
     this.choiceData = this.popupOurOpenData.main; //带入数据  包括name、type、method
 
     this.choiceValue = this.popupOurOpenData.main[0].name;
@@ -192,10 +192,10 @@
         const data = res.data.data;
         let outList = [];
         if (
-          this.mBigPopup.name == "社区建筑" ||
+          this.mBigPopup.name == "校区建筑" ||
           this.mBigPopup.name == "文化风景"
         ) {
-          // 社区建筑使用该id获取具体信息
+          // 校区建筑使用该id获取具体信息
           data.forEach((item) => {
             let icon = item.tpurl ? item.tpurl.split(",") : item.id;
             outList.push({
@@ -206,14 +206,14 @@
               from: this.choiceMain,
               video: item.videourl,
               buts:
-                this.mBigPopup.name == "社区建筑" ||
+                this.mBigPopup.name == "校区建筑" ||
                 this.mBigPopup.name == "文化风景"
                   ? ["定位", "实景", "图集"]
                   : ["定位"],
             });
           });
         } else if (this.mBigPopup.name == "活动") {
-          // 社区建筑使用该id获取具体信息
+          // 校区建筑使用该id获取具体信息
           data.records.forEach((item) => {
             let icon = item.tpurl.split(",");
             let useData = {
@@ -234,7 +234,7 @@
               introduce: item.context,
               video: item.videourl,
               buts:
-                that.mBigPopup.name == "社区建筑" ||
+                that.mBigPopup.name == "校区建筑" ||
                 that.mBigPopup.name == "文化风景"
                   ? ["定位", "实景", "图集"]
                   : ["定位"],
@@ -273,7 +273,7 @@
               introduce: item.introduce,
               video: item.videourl,
               buts:
-                that.mBigPopup.name == "社区建筑" ||
+                that.mBigPopup.name == "校区建筑" ||
                 that.mBigPopup.name == "文化风景"
                   ? ["定位", "实景", "图集"]
                   : ["定位"],
@@ -324,7 +324,7 @@
             introduce: item.introduce,
             video: item.videourl,
             buts:
-              that.mBigPopup.name == "社区建筑" ||
+              that.mBigPopup.name == "校区建筑" ||
               that.mBigPopup.name == "文化风景"
                 ? ["定位", "实景", "图集"]
                 : ["定位"],

--
Gitblit v1.9.3