diff --git a/CHANGELOG.md b/CHANGELOG.md index 3685fad1..e1f37839 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,7 @@ - 修复读取默认缓存语言的时候没有正确使用 `APP_CATCH_KEY.localeLanguage` 的问题 - 修复 `RTable` 全屏没有正确弹出提示信息问题 - 修复面包屑 `fullPath` 在平级模式下追加时为绑定问题 +- 修复 `closeAll` 方法在特殊情况下不能正确的关闭标签页并且跳转至 `root path` 的问题 ## 4.5.0 diff --git a/src/hooks/template/useSiderBar.ts b/src/hooks/template/useSiderBar.ts index abbe6971..6a16eb94 100644 --- a/src/hooks/template/useSiderBar.ts +++ b/src/hooks/template/useSiderBar.ts @@ -10,9 +10,10 @@ */ import { useMenuGetters, useMenuActions } from '@/store' -import { redirectRouterToDashboard } from '@/router/helper/routerCopilot' +import { useVueRouter, useAppRoot } from '@/hooks' +import { pick } from '@/utils' -import type { MenuTagOptions, Key } from '@/types' +import type { MenuTagOptions, Key, AppMenuOption } from '@/types' export type CloseMenuTag = Key | MenuTagOptions @@ -84,8 +85,12 @@ const normalMenuTagOption = (target: CloseMenuTag, fc: string) => { export function useSiderBar() { const { getMenuTagOptions, getMenuKey } = useMenuGetters() - const { changeMenuModelValue, spliceMenTagOptions, setMenuTagOptions } = - useMenuActions() + const { + changeMenuModelValue, + spliceMenTagOptions, + setMenuTagOptions, + resolveOption, + } = useMenuActions() /** * @@ -186,7 +191,33 @@ export function useSiderBar() { */ const closeAll = () => { spliceMenTagOptions(0, getMenuTagOptions.value.length) - nextTick(redirectRouterToDashboard) + + const { getRootPath } = useAppRoot() + const { + router: { getRoutes }, + } = useVueRouter() + + const findMenuOption = getRoutes().find( + (curr) => curr.path === getRootPath.value, + ) + + if (findMenuOption) { + const pickOption = pick(findMenuOption, [ + 'children', + 'meta', + 'path', + 'name', + 'redirect', + ]) as unknown as AppMenuOption + + changeMenuModelValue( + pickOption.path, + resolveOption({ + ...pickOption, + fullPath: pickOption.path, + }), + ) + } } /** diff --git a/src/store/hooks/useMenuStore.ts b/src/store/hooks/useMenuStore.ts index 883d8e9a..743a1dda 100644 --- a/src/store/hooks/useMenuStore.ts +++ b/src/store/hooks/useMenuStore.ts @@ -82,6 +82,7 @@ export const useMenuActions = () => { collapsedMenu, spliceMenTagOptions, setMenuTagOptions, + resolveOption, } = piniaMenuStore() return { @@ -89,5 +90,6 @@ export const useMenuActions = () => { collapsedMenu, spliceMenTagOptions, setMenuTagOptions, + resolveOption, } } diff --git a/src/store/modules/menu/index.ts b/src/store/modules/menu/index.ts index 3ee5bdb7..97ea3284 100644 --- a/src/store/modules/menu/index.ts +++ b/src/store/modules/menu/index.ts @@ -363,6 +363,7 @@ export const piniaMenuStore = defineStore( collapsedMenu, spliceMenTagOptions, setMenuTagOptions, + resolveOption, } }, {