|
@@ -241,7 +241,7 @@ l16.229-16.229l16.229,16.229l42.867-42.867C115.034,45.228,109.133,42.189,102.956
|
|
|
:class="{ hover: isShowMenu }"
|
|
|
@mouseenter="showMenu"
|
|
|
@mouseleave="hideMenu"
|
|
|
- v-if="$store.state.themeName === 'dark'"
|
|
|
+ v-show="$store.state.themeName === 'dark'"
|
|
|
>
|
|
|
<Menu :root="root" />
|
|
|
</div>
|
|
@@ -349,6 +349,7 @@ export default {
|
|
|
"class",
|
|
|
themeName === "dark" || themeName === "light" ? themeName : "dark"
|
|
|
);
|
|
|
+
|
|
|
// that.$nextTick(() => {
|
|
|
// that.API.requestData({
|
|
|
// isMust: false, // 请求是否携带 token ,默认为 true ,可缺省
|
|
@@ -402,6 +403,7 @@ export default {
|
|
|
$route(res) {
|
|
|
this.showSisView = res.fullPath === "/sisView";
|
|
|
},
|
|
|
+ "$store.state.menuData"(res) {},
|
|
|
},
|
|
|
};
|
|
|
</script>
|