yunxing 4 年之前
父节点
当前提交
e9b9286a48
共有 3 个文件被更改,包括 16 次插入41 次删除
  1. 13 40
      src/components/editview/leftToolBar.vue
  2. 1 0
      src/views/editer.vue
  3. 2 1
      src/views/home.vue

+ 13 - 40
src/components/editview/leftToolBar.vue

@@ -11,31 +11,15 @@
             </ul>
         </div>
         <div class="sidebarCustom" v-show="showSidebar">
-            <SidebarCustom :key="showSidebarKey" :width="222">
+            <SidebarCustom :key="showSidebarKey" :show="showSidebarLeft" :width="222">
                 <template #left>
                     <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: 100px"></div>
                 </template>
             </SidebarCustom>
         </div>
-        <!-- <el-drawer
-            size="220px"
-            :with-header="false"
-            :destroy-on-close="true"
-            :visible.sync="drawer"
-            :direction="direction"
-            :modal="false"
-            :modal-append-to-body="false"
-            :show-close="true"
-            :before-close="handleClose"
-            :wrapperClosable="false"
-            custom-class="drawer-box"
-        >
-            <legendList :chiceStatus="chiceStatus"></legendList>
-        </el-drawer> -->
     </div>
 </template>
 <script>
@@ -78,48 +62,37 @@ export default {
     components: { legendList, SidebarCustom },
     data() {
         return {
-            drawer: false,
             chiceStatus: -1, //选中按钮状态
-            direction: "ltr",
             leftData,
             showSidebar: false, //是否显示SideBar
             showSidebarKey: new Date().getTime(), //SideBar的key值
+            showSidebarLeft: true,
         };
     },
     created() {
-        window.vm = this;
+        // window.vm = this;
     },
     methods: {
         ...mapMutations(["SETCHOICELEHEND"]),
-        handleClose() {
-            this.drawer = false;
-        },
         /**
          * 点击左侧固定栏,显隐sidebar
          */
         openTool(val) {
+            // 左侧固定栏位有选中时,显示sideBar
             if (val != this.chiceStatus) {
                 this.chiceStatus = val;
-                if (this.drawer) {
-                    this.drawer = false;
-                    setTimeout(() => {
-                        this.drawer = true;
-                    }, 300);
-                } else {
-                    this.drawer = true;
-                }
+                this.showSidebarLeft = true;
+                this.showSidebar = true;
+                this.showSidebarKey = new Date().getTime();
             } else {
-                this.drawer = !this.drawer;
+                // 点击相同的TabBar,隐藏sidebar
                 this.chiceStatus = -1;
+                this.showSidebarLeft = false;
+                // sideBar有300ms动画
+                setTimeout(() => {
+                    this.showSidebar = false;
+                }, 300);
             }
-            // 左侧固定栏位有选中时,显示sideBar
-            this.showSidebar = Boolean(this.chiceStatus !== -1);
-            this.showSidebarKey = new Date().getTime();
-        },
-        choiceStatus() {
-            this.chiceStatus = 0;
-            this.drawer = false;
-            this.SETCHOICELEHEND("");
         },
     },
 };

+ 1 - 0
src/views/editer.vue

@@ -51,6 +51,7 @@ export default {
     },
     mounted() {
         this.categoryName = decodeURI(this.$route.query.categoryName);
+        console.log(decodeURI(decodeURI(window.location.href)));
     },
 };
 </script>

+ 2 - 1
src/views/home.vue

@@ -195,7 +195,7 @@ export default {
         };
     },
     created() {
-        window.vm = this;
+        // window.vm = this;
     },
     methods: {
         testClick(data) {
@@ -381,6 +381,7 @@ export default {
             const { id, graphId } = data,
                 { floorMap } = infos,
                 { folderId, folderName } = this;
+            console.log(data, infos);
             this.$message.warning("功能开发中");
             return true;
             this.$router.push({