From 4b6f91b7e05d527ffc16916b9ae3ab56bd4544db Mon Sep 17 00:00:00 2001 From: laurenting Date: Sat, 24 Apr 2021 09:34:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BA=8C=E7=BA=A7=E4=BB=A5=E4=B8=8A?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E6=B7=BB=E5=8A=A0affix=E5=8F=AA=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E5=90=8E=E4=B8=A4=E7=BA=A7=E7=9A=84path=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E6=89=93=E5=BC=80=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/components/TagsView/index.vue | 2 +- src/router/modules/nested.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue index d2a56e70..3e992f6a 100644 --- a/src/layout/components/TagsView/index.vue +++ b/src/layout/components/TagsView/index.vue @@ -85,7 +85,7 @@ export default { }) } if (route.children) { - const tempTags = this.filterAffixTags(route.children, route.path) + const tempTags = this.filterAffixTags(route.children, path.resolve(basePath, route.path)) if (tempTags.length >= 1) { tags = [...tags, ...tempTags] } diff --git a/src/router/modules/nested.js b/src/router/modules/nested.js index 48033ed1..1340b219 100644 --- a/src/router/modules/nested.js +++ b/src/router/modules/nested.js @@ -42,7 +42,7 @@ const nestedRouter = { path: 'menu1-2-2', component: () => import('@/views/nested/menu1/menu1-2/menu1-2-2'), name: 'Menu1-2-2', - meta: { title: 'Menu 1-2-2' } + meta: { title: 'Menu 1-2-2', affix: true } } ] },