From 4d39edd970d8517f416b4cec2d9babad8e5d95b5 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 17 Dec 2021 15:02:22 +0800
Subject: [PATCH] +
---
src/store/getters.js | 22 +++++++++++++++++++---
1 files changed, 19 insertions(+), 3 deletions(-)
diff --git a/src/store/getters.js b/src/store/getters.js
index a7e07d6..c685054 100644
--- a/src/store/getters.js
+++ b/src/store/getters.js
@@ -1,9 +1,25 @@
+//手机端
+let mobile = {
+ mviewer: state => state.mobile.mviewer,
+ mBigPopup: state => state.mobile.mBigPopup,
+ 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,
+ popupsDom: state => state.mobile.popupsDom,
+ query: state => state.mobile.query,
+ openmobileGoTo: state => state.mobile.openmobileGoTo,
+ openmobilePanorama: state => state.mobile.openmobilePanorama
+}
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,
}
export default getters
--
Gitblit v1.9.3