Browse Source

fix: reset tags when logout (#286)

一万 2 years ago
parent
commit
804f1aea9b

+ 1 - 1
src/layout/components/setting/index.vue

@@ -152,7 +152,7 @@ function onReset() {
   useMultiTagsStoreHook().multiTagsCacheChange(MultiTagsCache);
   toggleClass(Grey, "html-grey", document.querySelector("html"));
   toggleClass(Weak, "html-weakness", document.querySelector("html"));
-  useMultiTagsStoreHook().handleTags("equal", routerArrays);
+  useMultiTagsStoreHook().handleTags("equal", [...routerArrays]);
   storageLocal.clear();
   storageSession.clear();
 }

+ 3 - 0
src/layout/hooks/nav.ts

@@ -4,11 +4,13 @@ import { getConfig } from "/@/config";
 import { emitter } from "/@/utils/mitt";
 import { routeMetaType } from "../types";
 import { remainingPaths } from "/@/router";
+import { routerArrays } from "/@/layout/types";
 import { transformI18n } from "/@/plugins/i18n";
 import { storageSession } from "/@/utils/storage";
 import { useAppStoreHook } from "/@/store/modules/app";
 import { i18nChangeLanguage } from "@wangeditor/editor";
 import { useEpThemeStoreHook } from "/@/store/modules/epTheme";
+import { useMultiTagsStoreHook } from "/@/store/modules/multiTags";
 
 const errorInfo = "当前路由配置不正确,请检查配置";
 
@@ -44,6 +46,7 @@ export function useNav() {
 
   // 退出登录
   function logout() {
+    useMultiTagsStoreHook().handleTags("equal", [...routerArrays]);
     storageSession.removeItem("info");
     router.push("/login");
   }

+ 1 - 1
src/store/modules/multiTags.ts

@@ -12,7 +12,7 @@ export const useMultiTagsStore = defineStore({
     // 存储标签页信息(路由信息)
     multiTags: storageLocal.getItem("responsive-configure").multiTagsCache
       ? storageLocal.getItem("responsive-tags")
-      : routerArrays,
+      : [...routerArrays],
     multiTagsCache: storageLocal.getItem("responsive-configure").multiTagsCache
   }),
   getters: {