From 5de2d6f333bb6bb6eeb2baee4ca7fd0f3a6d88ff Mon Sep 17 00:00:00 2001
From: zrj <646384940@qq.com>
Date: Sat, 09 Nov 2024 14:05:28 +0800
Subject: [PATCH] 风险源统计颜色修改

---
 src/views/survey/components/box/fireSource.vue |   18 ++++++++++++------
 1 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/src/views/survey/components/box/fireSource.vue b/src/views/survey/components/box/fireSource.vue
index fe9f2a9..e3225ee 100644
--- a/src/views/survey/components/box/fireSource.vue
+++ b/src/views/survey/components/box/fireSource.vue
@@ -1,9 +1,14 @@
 <script setup>
-import { Text } from 'vue'
+
+import { inject, Text } from 'vue'
 const { VITE_APP_BASE } = import.meta.env
 import { getDetail } from '@/api/indParkInfo'
 
 import { getAssetsFile } from 'utils/utils'
+import { useRouterStore } from 'store/router'
+import { useRouter, useRoute } from 'vue-router'
+let router = useRouter()
+const store = useRouterStore()
 
 let state = reactive({
   parkInfo: {}
@@ -79,9 +84,6 @@
     console.log(err)
   })
 }
-
-
-
 </script>
 
 <template>
@@ -111,6 +113,8 @@
         </div>
       </div>
     </div>
+
+    <!-- <el-button @click="goSubLayout">跳转a</el-button> -->
   </div>
 </template>
 
@@ -127,7 +131,9 @@
 }
 
 .box-content-img {
-  height: 360px;
+  height: 380px;
+  // 隐藏滚动条
+  scrollbar-width: none;
   overflow-x: hidden;
   overflow-y: auto;
 }
@@ -150,7 +156,7 @@
   height: 360px;
   overflow: scroll;
   // 隐藏滚动条
-  scrollbar-width: none;
+  // scrollbar-width: none;
 
 }
 

--
Gitblit v1.9.3