diff --git a/src/layouts/components/tab/TabBar.vue b/src/layouts/components/tab/TabBar.vue index 4d4bbdc..81a77e1 100644 --- a/src/layouts/components/tab/TabBar.vue +++ b/src/layouts/components/tab/TabBar.vue @@ -16,10 +16,7 @@ const appStore = useAppStore() const router = useRouter() function handleTab(route: RouteLocationNormalized) { - router.push(route.path) -} -function handleClose(path: string) { - tabStore.closeTab(path) + router.push(route.fullPath) } const { t } = useI18n() const options = computed(() => { @@ -71,16 +68,16 @@ function handleSelect(key: string) { appStore.reloadPage() }, closeCurrent() { - tabStore.closeTab(currentRoute.value.path) + tabStore.closeTab(currentRoute.value.fullPath) }, closeOther() { - tabStore.closeOtherTabs(currentRoute.value.path) + tabStore.closeOtherTabs(currentRoute.value.fullPath) }, closeLeft() { - tabStore.closeLeftTabs(currentRoute.value.path) + tabStore.closeLeftTabs(currentRoute.value.fullPath) }, closeRight() { - tabStore.closeRightTabs(currentRoute.value.path) + tabStore.closeRightTabs(currentRoute.value.fullPath) }, closeAll() { tabStore.closeAllTabs() @@ -110,13 +107,13 @@ function onClickoutside() { size="small" :tabs-padding="10" :value="tabStore.currentTabPath" - @close="handleClose" + @close="tabStore.closeTab" >
{{ $t(`route.${String(item.name)}`, item.meta.title) }} @@ -124,9 +121,9 @@ function onClickoutside() { diff --git a/src/router/guard.ts b/src/router/guard.ts index 30cfcb4..48cf92f 100644 --- a/src/router/guard.ts +++ b/src/router/guard.ts @@ -61,7 +61,7 @@ export function setupRouterGuard(router: Router) { // 添加tabs tabStore.addTab(to) // 设置高亮标签; - tabStore.setCurrentTab(to.path as string) + tabStore.setCurrentTab(to.fullPath as string) }) router.afterEach((to) => { diff --git a/src/router/routes.static.ts b/src/router/routes.static.ts index f8473ca..c0d8f95 100644 --- a/src/router/routes.static.ts +++ b/src/router/routes.static.ts @@ -58,7 +58,7 @@ export const staticRoutes: AppRoute.RowRoute[] = [ { name: 'multi2Detail', path: '/multi/multi2/detail', - title: '多级菜单的详情页', + title: '菜单详情页', requiresAuth: true, icon: 'icon-park-outline:list', hide: true, diff --git a/src/store/tab.ts b/src/store/tab.ts index 459b9e2..218965e 100644 --- a/src/store/tab.ts +++ b/src/store/tab.ts @@ -24,7 +24,7 @@ export const useTabStore = defineStore('tab-store', { return // 如果标签名称已存在则不添加 - if (this.hasExistTab(route.path as string)) + if (this.hasExistTab(route.fullPath as string)) return // 根据meta.pinTab传递到不同的分组中 @@ -33,42 +33,42 @@ export const useTabStore = defineStore('tab-store', { else this.tabs.push(route) }, - async closeTab(path: string) { + async closeTab(fullPath: string) { const tabsLength = this.tabs.length // 如果动态标签大于一个,才会标签跳转 if (this.tabs.length > 1) { // 获取关闭的标签索引 - const index = this.getTabIndex(path) + const index = this.getTabIndex(fullPath) const isLast = index + 1 === tabsLength // 如果是关闭的当前页面,路由跳转到原先标签的后一个标签 - if (this.currentTabPath === path && !isLast) { + if (this.currentTabPath === fullPath && !isLast) { // 跳转到后一个标签 - router.push(this.tabs[index + 1].path) + router.push(this.tabs[index + 1].fullPath) } - else if (this.currentTabPath === path && isLast) { + else if (this.currentTabPath === fullPath && isLast) { // 已经是最后一个了,就跳转前一个 - router.push(this.tabs[index - 1].path) + router.push(this.tabs[index - 1].fullPath) } } // 删除标签 this.tabs = this.tabs.filter((item) => { - return item.path !== path + return item.fullPath !== fullPath }) // 删除后如果清空了,就跳转到默认首页 if (tabsLength - 1 === 0) router.push('/') }, - closeOtherTabs(path: string) { - const index = this.getTabIndex(path) + closeOtherTabs(fullPath: string) { + const index = this.getTabIndex(fullPath) this.tabs = this.tabs.filter((item, i) => i === index) }, - closeLeftTabs(path: string) { - const index = this.getTabIndex(path) + closeLeftTabs(fullPath: string) { + const index = this.getTabIndex(fullPath) this.tabs = this.tabs.filter((item, i) => i >= index) }, - closeRightTabs(path: string) { - const index = this.getTabIndex(path) + closeRightTabs(fullPath: string) { + const index = this.getTabIndex(fullPath) this.tabs = this.tabs.filter((item, i) => i <= index) }, clearAllTabs() { @@ -80,21 +80,25 @@ export const useTabStore = defineStore('tab-store', { router.push('/') }, - hasExistTab(path: string) { + hasExistTab(fullPath: string) { const _tabs = [...this.tabs, ...this.pinTabs] return _tabs.some((item) => { - return item.path === path + return item.fullPath === fullPath }) }, /* 设置当前激活的标签 */ - setCurrentTab(path: string) { - this.currentTabPath = path + setCurrentTab(fullPath: string) { + this.currentTabPath = fullPath }, - getTabIndex(path: string) { + getTabIndex(fullPath: string) { return this.tabs.findIndex((item) => { - return item.path === path + return item.fullPath === fullPath }) }, + modifyTab(fullPath: string, modifyFn: (route: RouteLocationNormalized) => void) { + const index = this.getTabIndex(fullPath) + modifyFn(this.tabs[index]) + }, }, persist: { storage: sessionStorage, diff --git a/src/views/demo/multi/multi2/detail/index.vue b/src/views/demo/multi/multi2/detail/index.vue index a4f437a..61d6c00 100644 --- a/src/views/demo/multi/multi2/detail/index.vue +++ b/src/views/demo/multi/multi2/detail/index.vue @@ -1,9 +1,25 @@ - + diff --git a/src/views/demo/multi/multi2/index.vue b/src/views/demo/multi/multi2/index.vue index cef8316..6e5cae2 100644 --- a/src/views/demo/multi/multi2/index.vue +++ b/src/views/demo/multi/multi2/index.vue @@ -5,8 +5,14 @@ const router = useRouter()