From 485b6c1599b0c98160ebf0d8eff6c41693236208 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 15 Dec 2021 14:47:49 +0800
Subject: [PATCH] 校内建筑添加接口,校内导航步行以及驾驶路线完善,弹窗部分完善
---
src/store/modules/popupParams.js | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/src/store/modules/popupParams.js b/src/store/modules/popupParams.js
index 2d3705a..40c8846 100644
--- a/src/store/modules/popupParams.js
+++ b/src/store/modules/popupParams.js
@@ -1,7 +1,11 @@
const popupParams = {
state: {
popupBgUrl: null,
- pupupQRUrl: null
+ pupupQRUrl: null,
+ terminus: null,
+ startingPoint: null,
+ pointPosition: null,
+ stateName: null
},
mutations: {
SET_POPUPBGURL (state, popupBgUrl) {
@@ -9,6 +13,18 @@
},
SET_POPUPQRURL (state, pupupQRUrl) {
state.pupupQRUrl = pupupQRUrl
+ },
+ SET_TERMINUS (state, terminus) {
+ state.terminus = terminus
+ },
+ SET_STARTINGPOINT (state, startingPoint) {
+ state.startingPoint = startingPoint
+ },
+ SET_POINTPOSITION (state, pointPosition) {
+ state.pointPosition = pointPosition
+ },
+ SET_STATENAME (state, stateName) {
+ state.stateName = stateName
}
},
actions: {
--
Gitblit v1.9.3