فهرست منبع

Merge branch 'dev' of git.sagacloud.cn:web/persagy-plan-editer into dev

zhangyu 4 سال پیش
والد
کامیت
ebec050d26

+ 16 - 22
src/components/editview/leftToolBar.vue

@@ -10,14 +10,14 @@
                 </li>
             </ul>
         </div>
-        <div class="sidebarCustom">
-            <SidebarCustom ref="sidebarCus" @change="handleChange">
+        <div class="sidebarCustom" v-show="showSidebar">
+            <SidebarCustom :key="showSidebarKey" :width="222">
                 <template #left>
-                    <legendList class="m-legend-list" :chiceStatus="chiceStatus"></legendList>
+                    <legendList class="m-legend-list" style="width: 220px" :chiceStatus="chiceStatus"></legendList>
                     <!-- <div class="m-legend-list"></div> -->
                 </template>
                 <template #right>
-                    <div style="font-size: 14px; width: 20px"></div>
+                    <div style="font-size: 14px; width: 100px"></div>
                 </template>
             </SidebarCustom>
         </div>
@@ -82,6 +82,8 @@ export default {
             chiceStatus: -1, //选中按钮状态
             direction: "ltr",
             leftData,
+            showSidebar: false, //是否显示SideBar
+            showSidebarKey: new Date().getTime(), //SideBar的key值
         };
     },
     created() {
@@ -92,15 +94,14 @@ export default {
         handleClose() {
             this.drawer = false;
         },
-        handleChange(leftWidth, leftShow) {
-            console.log(leftWidth, leftShow);
-        },
+        /**
+         * 点击左侧固定栏,显隐sidebar
+         */
         openTool(val) {
             if (val != this.chiceStatus) {
                 this.chiceStatus = val;
                 if (this.drawer) {
                     this.drawer = false;
-                    4;
                     setTimeout(() => {
                         this.drawer = true;
                     }, 300);
@@ -111,6 +112,9 @@ export default {
                 this.drawer = !this.drawer;
                 this.chiceStatus = -1;
             }
+            // 左侧固定栏位有选中时,显示sideBar
+            this.showSidebar = Boolean(this.chiceStatus !== -1);
+            this.showSidebarKey = new Date().getTime();
         },
         choiceStatus() {
             this.chiceStatus = 0;
@@ -176,23 +180,13 @@ li {
         }
     }
     .sidebarCustom {
-        // width: 240px;
-        // height: calc(100% - 2px);
-        // /deep/ .p-sidebar-custom-btn-rotate,
-        // /deep/ .p-sidebar-custom-bar-change-size {
-        //     left: 219px !important;
-        // }
-        // /deep/ .p-sidebar-left {
-        //     width: 220px !important;
-        // }
-        // /deep/ .p-sidebar-right {
-        //     // width: calc(100% - 220px) !important;
-        // }
         .m-legend-list {
-            width: 278px;
-            // height: calc(100% - 20px);
             font-size: 14px;
         }
+        /deep/ .p-sidebar-custom-btn {
+            top: 50% !important;
+            // left: 15px !important;
+        }
     }
 }
 .el-drawer__wrapper {

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 459 - 521
src/components/editview/leftToolBar/equipmentList.vue


+ 1 - 0
src/components/editview/leftToolBar/pipeList.vue

@@ -115,6 +115,7 @@ li {
 .pipe-list {
   width: 100%;
   height: 100%;
+  padding-top: 12px;
   .type {
     padding: 12px;
     box-sizing: border-box;