Browse Source

侧边栏增加是否固定按钮

baiyanting 1 year ago
parent
commit
d154e37865
5 changed files with 58 additions and 17 deletions
  1. 22 17
      src/App.vue
  2. 1 0
      src/assets/icon/svg/fixed.svg
  3. 1 0
      src/assets/icon/svg/unfixed.svg
  4. 5 0
      src/store/index.js
  5. 29 0
      src/views/layout/Menu.vue

+ 22 - 17
src/App.vue

@@ -5,7 +5,7 @@
     :style="{
     :style="{
       width: `${style.width}px`,
       width: `${style.width}px`,
       height: `${style.height}px`,
       height: `${style.height}px`,
-      transform: `${style.transform}`
+      transform: `${style.transform}`,
     }"
     }"
   >
   >
     <div v-if="isLogined" class="main">
     <div v-if="isLogined" class="main">
@@ -29,7 +29,7 @@
       </div>
       </div>
       <div
       <div
         class="menu-body"
         class="menu-body"
-        :class="{ hover: isShowMenu }"
+        :class="{ hover: isFixed ? true : isShowMenu }"
         @mouseenter="showMenu"
         @mouseenter="showMenu"
         @mouseleave="hideMenu"
         @mouseleave="hideMenu"
         v-show="
         v-show="
@@ -77,14 +77,7 @@
           </el-sub-menu>
           </el-sub-menu>
         </el-menu>
         </el-menu>
       </div>
       </div>
-      <div
-        class="main-body"
-        :style="
-          $store.state.themeName === 'light' && hideMenus === '0'
-            ? 'margin-left: 75px; max-width  : calc(100vw - 54px - 25px);'
-            : ''
-        "
-      >
+      <div class="main-body" :style="{ paddingLeft: isFixed ? '52px' : 0 }">
         <router-view />
         <router-view />
       </div>
       </div>
     </div>
     </div>
@@ -144,6 +137,9 @@ export default {
     isLogined() {
     isLogined() {
       return this.$store.state.user?.loginState;
       return this.$store.state.user?.loginState;
     },
     },
+    isFixed() {
+      return this.$store.state.isFixed;
+    },
   },
   },
   created() {
   created() {
     let that = this;
     let that = this;
@@ -198,7 +194,7 @@ export default {
       //   if (d > 1) {
       //   if (d > 1) {
       //     f = 18;
       //     f = 18;
       //   }
       //   }
-      return { x: w, y: h,  };
+      return { x: w, y: h };
     },
     },
     setScale() {
     setScale() {
       let scale = this.getScale();
       let scale = this.getScale();
@@ -211,14 +207,18 @@ export default {
       this.root = data.id;
       this.root = data.id;
     },
     },
     showMenu() {
     showMenu() {
-      this.isShowMenu = true;
-      this.memuCloseTimeout && clearTimeout(this.memuCloseTimeout);
+      if (!this.isFixed) {
+        this.isShowMenu = true;
+        this.memuCloseTimeout && clearTimeout(this.memuCloseTimeout);
+      }
     },
     },
     hideMenu() {
     hideMenu() {
-      const that = this;
-      this.memuCloseTimeout = setTimeout(function () {
-        that.isShowMenu = false;
-      }, 500);
+      if (!this.isFixed) {
+        const that = this;
+        this.memuCloseTimeout = setTimeout(function () {
+          that.isShowMenu = false;
+        }, 500);
+      }
     },
     },
     login() {
     login() {
       this.$store.commit("user/SET_LOGINSTATE", true);
       this.$store.commit("user/SET_LOGINSTATE", true);
@@ -361,6 +361,11 @@ body {
   }
   }
   .menu-body {
   .menu-body {
     position: absolute;
     position: absolute;
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+    justify-content: space-between;
+
     flex: 0 0 @menuWidth;
     flex: 0 0 @menuWidth;
     width: @menuWidth;
     width: @menuWidth;
     height: calc(100% - @headerHeight);
     height: calc(100% - @headerHeight);

File diff suppressed because it is too large
+ 1 - 0
src/assets/icon/svg/fixed.svg


File diff suppressed because it is too large
+ 1 - 0
src/assets/icon/svg/unfixed.svg


+ 5 - 0
src/store/index.js

@@ -13,6 +13,7 @@ const state = {
   menuData: [],
   menuData: [],
   windturbineMap: {},
   windturbineMap: {},
   moudleName: localStorage.getItem("ModuleName") || "",
   moudleName: localStorage.getItem("ModuleName") || "",
+  isFixed: JSON.parse(localStorage.getItem("isFixed")) || false,
 };
 };
 
 
 //改变状态的方法`
 //改变状态的方法`
@@ -20,6 +21,10 @@ const mutations = {
   loadingStore(state, tag) {
   loadingStore(state, tag) {
     state.loading = tag;
     state.loading = tag;
   },
   },
+  changeIsFixed(state, isFixed) {
+    state.isFixed = isFixed;
+    localStorage.setItem("isFixed", isFixed);
+  },
   changeTheme(state, tag) {
   changeTheme(state, tag) {
     state.themeName = tag;
     state.themeName = tag;
   },
   },

+ 29 - 0
src/views/layout/Menu.vue

@@ -81,6 +81,14 @@
       </li>
       </li>
     </ul>
     </ul>
   </div>
   </div>
+  <div
+    class="icon-fixed svg-icon"
+    :class="fixed ? 'svg-icon-green' : 'svg-icon-gray'"
+    @click="handleClickFixed"
+  >
+    <SvgIcon svgid="svg-unfixed" v-if="fixed == false"></SvgIcon>
+    <SvgIcon svgid="svg-fixed" v-if="fixed == true"></SvgIcon>
+  </div>
 </template>
 </template>
 <script>
 <script>
 import SvgIcon from "@com/coms/icon/svg-icon.vue";
 import SvgIcon from "@com/coms/icon/svg-icon.vue";
@@ -576,9 +584,14 @@ export default {
       parentIndex: null,
       parentIndex: null,
       subMenu: [],
       subMenu: [],
       subIndex: null,
       subIndex: null,
+      fixed: false,
     };
     };
   },
   },
   methods: {
   methods: {
+    handleClickFixed() {
+      this.fixed = !this.fixed;
+      this.$store.commit("changeIsFixed", this.fixed);
+    },
     fillterMenuRoutes,
     fillterMenuRoutes,
     click(index) {
     click(index) {
       this.activeIndex = index;
       this.activeIndex = index;
@@ -668,8 +681,21 @@ export default {
         return [];
         return [];
       }
       }
     },
     },
+    isFixed() {
+      return JSON.parse(localStorage.getItem("isFixed"));
+    },
   },
   },
   watch: {
   watch: {
+    isFixed: {
+      handler(val) {
+        if (!val) {
+          this.$store.commit("changeIsFixed", false);
+        } else {
+          this.fixed = val;
+        }
+      },
+      immediate: true,
+    },
     // 监听路由
     // 监听路由
     $route: {
     $route: {
       handler: function (val, oldVal) {
       handler: function (val, oldVal) {
@@ -802,4 +828,7 @@ export default {
     color: rgba(255, 255, 255, 50%);
     color: rgba(255, 255, 255, 50%);
   }
   }
 }
 }
+.icon-fixed {
+  padding-bottom: 20px;
+}
 </style>
 </style>