From b796a4c9e4398f998b86001a253874ff05f4627c Mon Sep 17 00:00:00 2001 From: iczer <1126263215@qq.com> Date: Tue, 4 Aug 2020 11:30:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20i18n=20problem=20of=20dynamic=20route;?= =?UTF-8?q?=20:bug:=20=E4=BF=AE=E5=A4=8D=EF=BC=9A=E5=8A=A8=E6=80=81?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E7=9A=84=E5=9B=BD=E9=99=85=E5=8C=96=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/menu/menu.js | 5 +++-- src/layouts/PageLayout.vue | 10 ++++++---- src/layouts/tabs/TabsView.vue | 7 ++++--- src/utils/i18n.js | 16 +++++++++------- src/utils/routerUtil.js | 13 ++++++++++++- 5 files changed, 34 insertions(+), 17 deletions(-) diff --git a/src/components/menu/menu.js b/src/components/menu/menu.js index 309c897..dd60a93 100644 --- a/src/components/menu/menu.js +++ b/src/components/menu/menu.js @@ -34,6 +34,7 @@ import Menu from 'ant-design-vue/es/menu' import Icon from 'ant-design-vue/es/icon' import fastEqual from 'fast-deep-equal' +import {getI18nKey} from '@/utils/routerUtil' const {Item, SubMenu} = Menu @@ -115,7 +116,7 @@ export default { h('router-link', {props: {to: menu.fullPath}}, [ this.renderIcon(h, menu.meta ? menu.meta.icon : 'none'), - h('span', [this.$t(menu.fullPath.substring(1).replace(new RegExp('/', 'g'), '.') + '.name')]) + h('span', [this.$t(getI18nKey(menu.fullPath))]) ] ) ] @@ -126,7 +127,7 @@ export default { let subItem = [h('span', {slot: 'title'}, [ this.renderIcon(h, menu.meta ? menu.meta.icon : 'none'), - h('span', [this.$t(menu.fullPath.substring(1).replace(new RegExp('/', 'g'), '.') + '.name')]) + h('span', [this.$t(getI18nKey(menu.fullPath))]) ] )] let itemArr = [] diff --git a/src/layouts/PageLayout.vue b/src/layouts/PageLayout.vue index d429885..5a33311 100644 --- a/src/layouts/PageLayout.vue +++ b/src/layouts/PageLayout.vue @@ -22,6 +22,8 @@