From dbb352c9d988dfac83da979023fe81a0a02f88e9 Mon Sep 17 00:00:00 2001
From: lixuliang <lixuliang_hd@126.com>
Date: 星期五, 12 四月 2024 16:34:20 +0800
Subject: [PATCH] 与数字人合并

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

diff --git a/src/utils/store.js b/src/utils/store.js
index cea5d0c..e33ba81 100644
--- a/src/utils/store.js
+++ b/src/utils/store.js
@@ -4,6 +4,15 @@
         list: {},
         show: false
     },
+    localLayer: {
+        list: {},
+        show: false
+    },
+    queryLayer: {
+        data: null,
+        isShow: false,
+        val: null,
+    },
     setPoplayerListAction(newValue) {
         if (this.debug) { }
         this.Poplayer.list = newValue
@@ -12,6 +21,14 @@
         if (this.debug) { }
         this.Poplayer.show = newValue
     },
+    setlocalLayerListAction(newValue) {
+        if (this.debug) { }
+        this.localLayer.list = newValue
+    },
+    setlocalLayerShowAction(newValue) {
+        if (this.debug) { }
+        this.localLayer.show = newValue
+    },
 };
 
 export default store;
\ No newline at end of file

--
Gitblit v1.9.3