From e40ee62d3e9b71ffe3432d32a53a00c4097b5708 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 31 Dec 2021 09:03:28 +0800
Subject: [PATCH] +3d  2.5d

---
 src/store/modules/popupParams.js |   52 +++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 49 insertions(+), 3 deletions(-)

diff --git a/src/store/modules/popupParams.js b/src/store/modules/popupParams.js
index ef7d4c8..077817e 100644
--- a/src/store/modules/popupParams.js
+++ b/src/store/modules/popupParams.js
@@ -5,13 +5,23 @@
         terminus: null,
         startingPoint: null,
         pointPosition: null,
-        stateName: null
+        stateName: null,
+        siteName: null,
+        telephone: null,
+        introduceText: null,
+        panoramaUrl: null,
+        detailsPopup: false,
+        panoramaPopup: false,
+        // 图集
+        popupImgAtlas: [],
+        teachList: [],
+        liveList: []
     },
     mutations: {
-        SET_POPUPBGURL(state, popupBgUrl) {
+        SET_POPUPBGURL (state, popupBgUrl) {
             state.popupBgUrl = popupBgUrl
         },
-        SET_POPUPQRURL(state, pupupQRUrl) {
+        SET_POPUPQRURL (state, pupupQRUrl) {
             state.pupupQRUrl = pupupQRUrl
         },
         SET_TERMINUS (state, terminus) {
@@ -25,6 +35,42 @@
         },
         SET_STATENAME (state, stateName) {
             state.stateName = stateName
+        },
+        SET_SITENAME (state, siteName) {
+            state.siteName = siteName
+        },
+        SET_TELEPHONE (state, telephone) {
+            state.telephone = telephone
+        },
+        SET_INTRODUCETEXT (state, introduceText) {
+            state.introduceText = introduceText
+        },
+        SET_PANORAMAURL (state, panoramaUrl) {
+            state.panoramaUrl = panoramaUrl
+        },
+        SET_DETAILSPOPUP (state, detailsPopup) {
+            state.detailsPopup = detailsPopup
+        },
+        SET_PANORAMAPOPUP (state, panoramaPopup) {
+            state.panoramaPopup = panoramaPopup
+        },
+        SET_POPUPIMGATLAS (state, popupImgAtlas) {
+            state.popupImgAtlas = popupImgAtlas
+        },
+        SET_TEACHLIST (state, teachList) {
+            state.teachList = teachList
+        },
+        SET_LIVELIST (state, liveList) {
+            state.liveList = liveList
+        },
+
+        CLEAR_ALL (state, param) {
+            state.siteName = param
+            state.introduceText = param
+            state.telephone = param
+            state.panoramaUrl = param
+            state.teachList = []
+            state.liveList = []
         }
     },
     actions: {

--
Gitblit v1.9.3