mirror of
				https://github.com/pure-admin/vue-pure-admin.git
				synced 2025-11-03 13:44:47 +08:00 
			
		
		
		
	fix: reset tags when logout (#286)
This commit is contained in:
		
							parent
							
								
									636201df80
								
							
						
					
					
						commit
						804f1aea9b
					
				@ -152,7 +152,7 @@ function onReset() {
 | 
				
			|||||||
  useMultiTagsStoreHook().multiTagsCacheChange(MultiTagsCache);
 | 
					  useMultiTagsStoreHook().multiTagsCacheChange(MultiTagsCache);
 | 
				
			||||||
  toggleClass(Grey, "html-grey", document.querySelector("html"));
 | 
					  toggleClass(Grey, "html-grey", document.querySelector("html"));
 | 
				
			||||||
  toggleClass(Weak, "html-weakness", document.querySelector("html"));
 | 
					  toggleClass(Weak, "html-weakness", document.querySelector("html"));
 | 
				
			||||||
  useMultiTagsStoreHook().handleTags("equal", routerArrays);
 | 
					  useMultiTagsStoreHook().handleTags("equal", [...routerArrays]);
 | 
				
			||||||
  storageLocal.clear();
 | 
					  storageLocal.clear();
 | 
				
			||||||
  storageSession.clear();
 | 
					  storageSession.clear();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -4,11 +4,13 @@ import { getConfig } from "/@/config";
 | 
				
			|||||||
import { emitter } from "/@/utils/mitt";
 | 
					import { emitter } from "/@/utils/mitt";
 | 
				
			||||||
import { routeMetaType } from "../types";
 | 
					import { routeMetaType } from "../types";
 | 
				
			||||||
import { remainingPaths } from "/@/router";
 | 
					import { remainingPaths } from "/@/router";
 | 
				
			||||||
 | 
					import { routerArrays } from "/@/layout/types";
 | 
				
			||||||
import { transformI18n } from "/@/plugins/i18n";
 | 
					import { transformI18n } from "/@/plugins/i18n";
 | 
				
			||||||
import { storageSession } from "/@/utils/storage";
 | 
					import { storageSession } from "/@/utils/storage";
 | 
				
			||||||
import { useAppStoreHook } from "/@/store/modules/app";
 | 
					import { useAppStoreHook } from "/@/store/modules/app";
 | 
				
			||||||
import { i18nChangeLanguage } from "@wangeditor/editor";
 | 
					import { i18nChangeLanguage } from "@wangeditor/editor";
 | 
				
			||||||
import { useEpThemeStoreHook } from "/@/store/modules/epTheme";
 | 
					import { useEpThemeStoreHook } from "/@/store/modules/epTheme";
 | 
				
			||||||
 | 
					import { useMultiTagsStoreHook } from "/@/store/modules/multiTags";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const errorInfo = "当前路由配置不正确,请检查配置";
 | 
					const errorInfo = "当前路由配置不正确,请检查配置";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -44,6 +46,7 @@ export function useNav() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  // 退出登录
 | 
					  // 退出登录
 | 
				
			||||||
  function logout() {
 | 
					  function logout() {
 | 
				
			||||||
 | 
					    useMultiTagsStoreHook().handleTags("equal", [...routerArrays]);
 | 
				
			||||||
    storageSession.removeItem("info");
 | 
					    storageSession.removeItem("info");
 | 
				
			||||||
    router.push("/login");
 | 
					    router.push("/login");
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
				
			|||||||
@ -12,7 +12,7 @@ export const useMultiTagsStore = defineStore({
 | 
				
			|||||||
    // 存储标签页信息(路由信息)
 | 
					    // 存储标签页信息(路由信息)
 | 
				
			||||||
    multiTags: storageLocal.getItem("responsive-configure").multiTagsCache
 | 
					    multiTags: storageLocal.getItem("responsive-configure").multiTagsCache
 | 
				
			||||||
      ? storageLocal.getItem("responsive-tags")
 | 
					      ? storageLocal.getItem("responsive-tags")
 | 
				
			||||||
      : routerArrays,
 | 
					      : [...routerArrays],
 | 
				
			||||||
    multiTagsCache: storageLocal.getItem("responsive-configure").multiTagsCache
 | 
					    multiTagsCache: storageLocal.getItem("responsive-configure").multiTagsCache
 | 
				
			||||||
  }),
 | 
					  }),
 | 
				
			||||||
  getters: {
 | 
					  getters: {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user