diff --git a/src/layouts/tabs/TabsHead.vue b/src/layouts/tabs/TabsHead.vue index 499b0e9..4868a6a 100644 --- a/src/layouts/tabs/TabsHead.vue +++ b/src/layouts/tabs/TabsHead.vue @@ -95,8 +95,7 @@ this.$emit('contextmenu', pageKey, e) }, pageName(page) { - const pagePath = page.fullPath.split('?')[0] - const custom = this.customTitles.find(item => item.path === pagePath) + const custom = this.customTitles.find(item => item.path === page.path) return (custom && custom.title) || page.title || this.$t(getI18nKey(page.keyPath)) } } diff --git a/src/layouts/tabs/TabsView.vue b/src/layouts/tabs/TabsView.vue index 979e71f..bfafac2 100644 --- a/src/layouts/tabs/TabsView.vue +++ b/src/layouts/tabs/TabsView.vue @@ -13,7 +13,7 @@
- + @@ -62,10 +62,10 @@ export default { this.loadCacheConfig(this.$router?.options?.routes) this.loadCachedTabs() const route = this.$route - if (this.pageList.findIndex(item => item.path === route.path) === -1) { + if (this.pageList.findIndex(item => item.path === route.fullPath) === -1) { this.pageList.push(this.createPage(route)) } - this.activePage = route.path + this.activePage = route.fullPath if (this.multiPage) { this.$nextTick(() => { this.setCachedKey(route) @@ -86,8 +86,8 @@ export default { this.loadCacheConfig(val) }, '$route': function (newRoute) { - this.activePage = newRoute.path - const page = this.pageList.find(item => item.path === newRoute.path) + this.activePage = newRoute.fullPath + const page = this.pageList.find(item => item.path === newRoute.fullPath) if (!this.multiPage) { this.pageList = [this.createPage(newRoute)] } else if (page) { @@ -261,7 +261,7 @@ export default { return { keyPath: route.matched[route.matched.length - 1].path, fullPath: route.fullPath, loading: false, - path: route.path, + path: route.fullPath, title: route.meta && route.meta.page && route.meta.page.title, unclose: route.meta && route.meta.page && (route.meta.page.closable === false), } @@ -271,7 +271,7 @@ export default { * @param route 页面对应的路由 */ setCachedKey(route) { - const page = this.pageList.find(item => item.path === route.path) + const page = this.pageList.find(item => item.path === route.fullPath) page.unclose = route.meta && route.meta.page && (route.meta.page.closable === false) if (!page._init_) { const vnode = this.$refs.tabContent.$vnode @@ -301,7 +301,7 @@ export default { routes.forEach(item => { const cacheAble = item.meta?.page?.cacheAble ?? pCache ?? true if (!cacheAble) { - this.excludeKeys.push(new RegExp(`${item.path.replace(/:[^/]*/g, '[^/]*')}\\d*$`)) + this.excludeKeys.push(new RegExp(`${item.path.replace(/:[^/]*/g, '[^/]*')}(\\?.*)?\\d*$`)) } if (item.children) { this.loadCacheConfig(item.children, cacheAble) diff --git a/src/plugins/tabs-page-plugin.js b/src/plugins/tabs-page-plugin.js index ddf382e..ea9efc9 100644 --- a/src/plugins/tabs-page-plugin.js +++ b/src/plugins/tabs-page-plugin.js @@ -17,8 +17,9 @@ const TabsPagePlugin = { }, $setPageTitle(route, title) { if (title) { - let path = typeof route === 'object' ? route.path : route - path = path && path.split('?')[0] + // let path = typeof route === 'object' ? route.path : route + // path = path && path.split('?')[0] + let path = typeof route === 'object' ? this.$router.resolve(route).route.fullPath : route this.$store.commit('setting/setCustomTitle', {path, title}) } } @@ -26,8 +27,8 @@ const TabsPagePlugin = { computed: { customTitle() { const customTitles = this.$store.state.setting.customTitles - const path = this.$route.path.split('?')[0] - const custom = customTitles.find(item => item.path === path) + // const path = this.$route.path.split('?')[0] + const custom = customTitles.find(item => item.path === this.$route.fullPath) return custom && custom.title } }