2
0

fix:个人信息目录

This commit is contained in:
zhongzm
2024-12-03 18:40:24 +08:00
parent 36108a0ffa
commit 65a891a73a
3 changed files with 13 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ const viewEn: any = {
"view.billing": "Billing",
"view.billing_histories": "Historical",
"view.set-meal": "Set Meal",
"view.userInfo":"User Information",
};
const local: any = {

View File

@@ -5,6 +5,7 @@ const viewZh: any = {
"view.billing": "账单",
"view.billing_histories": "历史查询",
"view.set-meal": "套餐",
"view.userInfo":"个人信息"
};
const local:any = {

View File

@@ -285,4 +285,15 @@ export const customRoutes: GeneratedRoute[] = [
order: 15,
}
},
{
name: 'user-info',
path: '/userInfo',
component: 'layout.base$view.userInfo',
meta: {
title: '个人信息',
i18nKey: 'view.userInfo',
icon: 'icon-park-outline:all-application',
order: 16,
}
},
]