Przeglądaj źródła

菜单传参bug修复

Koishi 3 lat temu
rodzic
commit
d9f7329b20
2 zmienionych plików z 12 dodań i 4 usunięć
  1. 7 3
      src/App.vue
  2. 5 1
      src/store/index.js

+ 7 - 3
src/App.vue

@@ -316,9 +316,6 @@ l16.229-16.229l16.229,16.229l42.867-42.867C115.034,45.228,109.133,42.189,102.956
 // 导入header.vue文件
 // 导入header.vue文件
 import Menu from "@/views/layout/Menu.vue";
 import Menu from "@/views/layout/Menu.vue";
 import Header from "@/views/layout/Header.vue";
 import Header from "@/views/layout/Header.vue";
-
-import { mapMutations } from "vuex";
-
 import LoginPage from "./views/layout/login-page.vue";
 import LoginPage from "./views/layout/login-page.vue";
 import sisView from "./views/sisView/index.vue";
 import sisView from "./views/sisView/index.vue";
 
 
@@ -352,6 +349,9 @@ export default {
       "class",
       "class",
       themeName === "dark" || themeName === "light" ? themeName : "dark"
       themeName === "dark" || themeName === "light" ? themeName : "dark"
     );
     );
+
+    console.log(1231231232132, that.$store.state.menuData);
+
     // that.$nextTick(() => {
     // that.$nextTick(() => {
     //   that.API.requestData({
     //   that.API.requestData({
     //     isMust: false, // 请求是否携带 token ,默认为 true ,可缺省
     //     isMust: false, // 请求是否携带 token ,默认为 true ,可缺省
@@ -405,6 +405,10 @@ export default {
     $route(res) {
     $route(res) {
       this.showSisView = res.fullPath === "/sisView";
       this.showSisView = res.fullPath === "/sisView";
     },
     },
+
+    "$store.state.menuData"(res) {
+      console.log(123123, res);
+    },
   },
   },
 };
 };
 </script>
 </script>

+ 5 - 1
src/store/index.js

@@ -23,6 +23,9 @@ const mutations = {
   },
   },
   update(state, newData) {
   update(state, newData) {
     state.windturbineMap = newData.data
     state.windturbineMap = newData.data
+  },
+  changeMenuData(state, newData) {
+    state.menuData = newData;
   }
   }
 };
 };
 
 
@@ -46,7 +49,8 @@ const getters = {
   themeName: state => state.themeName,
   themeName: state => state.themeName,
   asidez: state => state.z,
   asidez: state => state.z,
   mainy: state => state.y,
   mainy: state => state.y,
-  login: state => state.login
+  login: state => state.login,
+  menuData: state => state.menuData
 }
 }
 
 
 export default createStore({
 export default createStore({