From a35f963076eecf415487e4c9cc4c102903fec4d2 Mon Sep 17 00:00:00 2001
From: lixuliang <lixuliang_hd@126.com>
Date: 星期三, 01 十一月 2023 17:11:15 +0800
Subject: [PATCH] 会议保障历史记录+跳转标准地平台

---
 src/store/index.js |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/store/index.js b/src/store/index.js
index f518161..27cb7b7 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -30,12 +30,19 @@
     isShowHistory: false,
     description: {},
     selectedLayers: [],
+    userId: "",
+    userName: "",
     // layerData: {}
   },
   mutations: {
     selectedLayer(state, b) {
       state.selectedLayers = b
     },
+    saveUserInfo(state, b) {
+      state.userId = b.userId
+      state.userName = b.userName
+    },
+
     showHistory(state, b) {
       state.isShowHistory = b
     },

--
Gitblit v1.9.3