From b67f46b4a768b4cd72d4e463c5dffefe977ddeb7 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Mon, 02 Dec 2024 22:04:27 +0800
Subject: [PATCH] 应急空间及全局图层去除废水处理站、污水池

---
 src/views/space/components/leftContainer.vue |   28 +++++++++++++++-------------
 1 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/src/views/space/components/leftContainer.vue b/src/views/space/components/leftContainer.vue
index bbf0452..1835233 100644
--- a/src/views/space/components/leftContainer.vue
+++ b/src/views/space/components/leftContainer.vue
@@ -2,7 +2,7 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2023-03-10 15:27:59
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-11-18 16:10:10
+ * @LastEditTime: 2024-11-28 11:35:07
  * @FilePath: \bigScreen\src\views\space\components\leftContainer.vue
  * @Description: 
  * 
@@ -47,7 +47,7 @@
     code: code,
   }
   getDictionary(param).then((res) => {
-    resData.data = res.data.data.map(item => {
+    resData.data = res.data.data.filter(i => i.dictKey != 7 && i.dictKey != 9 && i.dictKey != 11).map(item => {
       return {
         label: item.dictValue,
         value: item.dictKey
@@ -59,7 +59,6 @@
 }
 
 const tabClick = (item) => {
-  console.log('tabClick', item)
   if (curSelect.value) {
     if (curSelect.value == '3') {
       EventBus.emit('restHandleDelChange', `3-3-1`)
@@ -122,8 +121,8 @@
       </div>
     </div>
     <div v-if="curSelect == '3'">
-      <div class="left-container cur-container-title">
-        <div class="tablist h100">
+      <div class="cur-container-title">
+        <div class="tablist">
           <div class="cursor-p" :class="{ on: item.select }" v-for="item, index in gawList" :key="index"
             @click="tabClickGW(item)">
             <div class="label-box">
@@ -139,7 +138,7 @@
 
 <style lang="scss" scoped>
 .left-container {
-  width: 64px;
+  width: auto;
 }
 
 .cur-container {
@@ -156,12 +155,13 @@
       margin-top: 10px;
       padding: 8px;
       width: 64px;
-      height: 64px;
+      height: 48px;
 
       border-radius: 50%;
       box-shadow: inset 0 0 40px #409eff;
       color: #fff;
       box-sizing: content-box;
+      font-size: 12px;
 
       &.on {
         position: relative;
@@ -170,7 +170,8 @@
       }
 
       .label-box {
-        line-height: 24px;
+        padding: 8px;
+        line-height: 20px;
         text-align: center;
       }
     }
@@ -182,7 +183,6 @@
   pointer-events: none;
   margin-left: 120px;
   margin-top: 60px;
-  font-size: 12px;
 
   .tablist {
     pointer-events: all;
@@ -193,13 +193,14 @@
       justify-content: center;
       margin-top: 10px;
       padding: 8px;
-      width: 54px;
-      height: 54px;
+      width: 64px;
+      height: 48px;
 
+      color: #fff;
       border-radius: 50%;
       box-shadow: inset 0 0 40px #409eff;
-      color: #fff;
       box-sizing: content-box;
+      font-size: 12px;
 
       &.on {
         position: relative;
@@ -208,7 +209,8 @@
       }
 
       .label-box {
-        line-height: 14px;
+        padding: 8px;
+        line-height: 16px;
         text-align: center;
       }
     }

--
Gitblit v1.9.3