From 4102cd81b143bd83ef3c2e1f85311075e2e2d7e2 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 24 Dec 2021 11:49:16 +0800
Subject: [PATCH] +接口更改
---
src/store/getters.js | 35 ++++++++++++++++++++++++++++++++---
1 files changed, 32 insertions(+), 3 deletions(-)
diff --git a/src/store/getters.js b/src/store/getters.js
index a7e07d6..00099e1 100644
--- a/src/store/getters.js
+++ b/src/store/getters.js
@@ -1,9 +1,38 @@
+// 手机端
+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,
+ 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,//测试
+ ccDataState: state => state.mobile.ccDataState,//测试
+ openmobilePanorama: state => state.mobile.openmobilePanorama,
+ MobileWindowsHideFixed: state => state.mobile.MobileWindowsHideFixed,//固定窗口
+ MobileWindowChangeDataFixed: state => state.mobile.MobileWindowChangeDataFixed,//固定窗口
+}
const getters = {
+ ...mobile,
viewer: state => state.viewer.viewer,
popupBgUrl: state => state.popupParams.popupBgUrl,
pupupQRUrl: state => state.popupParams.pupupQRUrl,
- mviewer: state => state.mobile.mviewer,
- mBigPopup: state => state.mobile.mBigPopup,
- mBigPopupAfter: state => state.mobile.mBigPopupAfter
+ pointPosition: state => state.popupParams.pointPosition,
+ 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