From d3fc230051884ee203e8adef0b8ff4158c2b43fe Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Thu, 16 Dec 2021 16:39:21 +0800
Subject: [PATCH] +全屏弹窗样式修改
---
src/store/getters.js | 19 ++++++++++++++++---
1 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/src/store/getters.js b/src/store/getters.js
index a7e07d6..aea9271 100644
--- a/src/store/getters.js
+++ b/src/store/getters.js
@@ -1,9 +1,22 @@
+//手机端
+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,
+ popupsDom: state => state.mobile.popupsDom,
+ query: state => state.mobile.query
+}
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