yunxing 4 years ago
parent
commit
994633ce49

+ 3 - 2
src/components/editview/leftToolBar.vue

@@ -12,7 +12,7 @@
         </div>
         <div class="sidebarCustom">
             <SidebarCustom ref="sidebarCus" @change="handleChange">
-                <template #left style="width: 240px">
+                <template #left>
                     <legendList class="m-legend-list" :chiceStatus="chiceStatus"></legendList>
                     <!-- <div class="m-legend-list"></div> -->
                 </template>
@@ -190,7 +190,8 @@ li {
         // }
         .m-legend-list {
             width: 278px;
-            height: 100%;
+            // height: calc(100% - 20px);
+            font-size: 14px;
         }
     }
 }

+ 1 - 1
src/components/editview/leftToolBar/equipmentList.vue

@@ -389,7 +389,7 @@ li {
     display: flex;
     align-items: center;
     justify-content: space-around;
-    margin-top: 12px;
+    padding-top: 12px;
     .shaixuan {
       cursor: pointer;
     }

+ 2 - 2
src/components/editview/leftToolBar/legendList.vue

@@ -4,9 +4,9 @@
         <!-- 基础图例 -->
         <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
         <!-- 设备类 -->
-        <equipmentList v-if="chiceStatus == 1" @openAddEqupModle="openAddEqupModle"></equipmentList>
+        <equipmentList v-if="chiceStatus == 2" @openAddEqupModle="openAddEqupModle"></equipmentList>
         <!-- 管线类 -->
-        <pipeList v-if="chiceStatus == 3"></pipeList>
+        <pipeList v-if="chiceStatus == 1"></pipeList>
 
         <!-- 添加设备 -->
         <add-equipment-dialog @closeModal="showAddEquipmentDialog = false" :showDialog="showAddEquipmentDialog" />