From 7c55464ad98984e50201bdd43ecda7de93082ecd Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Mon, 27 Dec 2021 09:49:04 +0800
Subject: [PATCH] +主图

---
 src/store/getters.js |   42 +++++++++++++++++++++++++++++++++++-------
 1 files changed, 35 insertions(+), 7 deletions(-)

diff --git a/src/store/getters.js b/src/store/getters.js
index c685054..b7da4e7 100644
--- a/src/store/getters.js
+++ b/src/store/getters.js
@@ -1,19 +1,38 @@
-//手机端
-let mobile = {
+// 手机端
+const mobile = {
     mviewer: state => state.mobile.mviewer,
     mBigPopup: state => state.mobile.mBigPopup,
+    popupOurOpenData: state => state.mobile.popupOurOpenData,
+    popupTableName: state => state.mobile.popupTableName,
     mBigPopupAfter: state => state.mobile.mBigPopupAfter,
     iconHide: state => state.mobile.iconHide,
-    DC: state => state.mobile.DC,
-    MobileWindowsHide: state => state.mobile.MobileWindowsHide,
-    MobileWindowChangeData: state => state.mobile.MobileWindowChangeData,
+    MobileWindowsHide: state => state.mobile.MobileWindowsHide, // 随地图移动窗口
+    MobileWindowChangeData: state => state.mobile.MobileWindowChangeData, // 随地图移动窗口
     popupsDom: state => state.mobile.popupsDom,
     query: state => state.mobile.query,
-    openmobileGoTo: state => state.mobile.openmobileGoTo,
-    openmobilePanorama: state => state.mobile.openmobilePanorama
+    openmobileGoTo: state => state.mobile.openmobileGoTo, // 测试
+    ccDataState: state => state.mobile.ccDataState, // 测试
+    openmobilePanorama: state => state.mobile.openmobilePanorama,
+    MobileWindowsHideFixed: state => state.mobile.MobileWindowsHideFixed, // 固定窗口
+    MobileWindowChangeDataFixed: state => state.mobile.MobileWindowChangeDataFixed // 固定窗口
 }
+
+const navigation = {
+    campusNavFlag: state => state.navigation.campusNavFlag,
+    comeName: state => state.navigation.comeName,
+    getToName: state => state.navigation.getToName
+}
+
+const search = {
+    orgNavBarFlag: state => state.search.orgNavBarFlag,
+    orgNavBarTitle: state => state.search.orgNavBarTitle,
+    orgNavBarList: state => state.search.orgNavBarList
+}
+
 const getters = {
     ...mobile,
+    ...navigation,
+    ...search,
     viewer: state => state.viewer.viewer,
     popupBgUrl: state => state.popupParams.popupBgUrl,
     pupupQRUrl: state => state.popupParams.pupupQRUrl,
@@ -21,5 +40,14 @@
     terminus: state => state.popupParams.terminus,
     startingPoint: state => state.popupParams.startingPoint,
     stateName: state => state.popupParams.stateName,
+    siteName: state => state.popupParams.siteName,
+    telephone: state => state.popupParams.telephone,
+    introduceText: state => state.popupParams.introduceText,
+    panoramaUrl: state => state.popupParams.panoramaUrl,
+    detailsPopup: state => state.popupParams.detailsPopup,
+    panoramaPopup: state => state.popupParams.panoramaPopup,
+    popupImgAtlas: state => state.popupParams.popupImgAtlas,
+    teachList: state => state.popupParams.teachList,
+    liveList: state => state.popupParams.liveList
 }
 export default getters

--
Gitblit v1.9.3