From 5df6240f6cd274e698d1e6358443364d543c126c Mon Sep 17 00:00:00 2001
From: Jin Lei <jinlei_182@163.com>
Date: 星期六, 23 十二月 2023 10:23:27 +0800
Subject: [PATCH] [信令]添加信令相关功能

---
 src/components/index.vue |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/components/index.vue b/src/components/index.vue
index e6ba270..51fdfab 100644
--- a/src/components/index.vue
+++ b/src/components/index.vue
@@ -45,7 +45,8 @@
       <right ref="Right" />
       <leftpanel ref="Left" />
       <menupanel />
-      <bottommenu />
+      <bottommenu ref="bottommenu" />
+      <signalling v-if="signallingShow"></signalling>
       <setting v-if="showSetting" />
       <qycharts v-if="$store.state.qyEchartsShow" />
     </div>
@@ -63,7 +64,7 @@
 import qycharts from "@/components/bottom/qycharts";
 import menupanel from "@/components/menu/index";
 import setting from "@/components/menu/tools/setting";
-
+import signalling from "@/components/menu/signalling";
 import bottommenu from "@/components/menu/bottom-menu";
 import { mapState, mapMutations } from "vuex";
 
@@ -81,6 +82,7 @@
     setting,
     qycharts,
     History,
+    signalling
   },
   data() {
     return {
@@ -94,6 +96,7 @@
       offset: "0%",
       tooltipInfo: "璇风◢鍚庛�傘�傘��",
       tooltipShow: false,
+      signallingShow:false,
       switchKey: 0,
       // viewer1Show: false,
     };
@@ -236,6 +239,9 @@
       this.$store.commit("showHistory", false);
     },
   },
+  beforeDestroy(){
+    this.$refs.bottommenu.switchMenu(0);
+  },
 };
 </script>
 <style scoped>

--
Gitblit v1.9.3