From 037a5da7373595a9f3915f89250dbeeea030a111 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 12 Feb 2025 19:57:07 +0800
Subject: [PATCH] 突发事件模拟相关调整

---
 src/store/map.js |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/store/map.js b/src/store/map.js
index 929d1c8..0788449 100644
--- a/src/store/map.js
+++ b/src/store/map.js
@@ -2,7 +2,7 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2024-10-28 18:24:16
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2025-01-15 14:35:23
+ * @LastEditTime: 2025-02-12 18:21:51
  * @FilePath: \bigScreen\src\store\map.js
  * @Description: 
  * 
@@ -17,6 +17,8 @@
     loadMap: false,
     pointHeight: 64,
     editPoint: false,
+    startCustomWx: false,
+    showPreLevel: false,
   }),
 
   // 相当于 Vuex 的 getters,用于计算状态
@@ -32,6 +34,14 @@
 
     setEditPoint (flag) {
       this.editPoint = flag
-    }
+    },
+
+    setStartCustomWx (flag) {
+      this.startCustomWx = flag
+    },
+
+    setShowPreLevel (flag) {
+      this.showPreLevel = flag
+    },
   }
 })

--
Gitblit v1.9.3