2
0

fix:菜单路由修改

This commit is contained in:
zhongzm
2024-12-24 18:46:04 +08:00
parent dd1ac7b66a
commit f3ca00d88a

View File

@@ -273,6 +273,18 @@ export const customRoutes: GeneratedRoute[] = [
//hideInMenu: true
},
children: [
{
name: 'billing_billservice',
path: '/billing/billservice',
component: 'view.billing_billservice',
meta: {
title: '订单服务',
i18nKey: 'view.billing_billservice',
icon: 'material-symbols:filter-list-off',
order: 1,
hideInMenu: true
},
},
{
name: 'billing_histories',
path: '/billing/histories',
@@ -317,7 +329,7 @@ export const customRoutes: GeneratedRoute[] = [
i18nKey: 'view.set-meal',
icon: 'icon-park-outline:all-application',
order: 15,
//hideInMenu: true
hideInMenu: true
}
},
{
@@ -374,6 +386,39 @@ export const customRoutes: GeneratedRoute[] = [
order:19,
hideInMenu: true
}
},
{
name: 'user-info_access',
path: '/userInfo/access',
component: 'view.userInfo_access',
meta: {
title: '当前设备',
i18nKey: 'view.userInfo_access',
order:20,
hideInMenu: true
}
},
{
name: 'user-info_records',
path: '/userInfo/records',
component: 'view.userInfo_records',
meta: {
title: '历史设备',
i18nKey: 'view.userInfo_records',
order:21,
hideInMenu: true
}
},
{
name: 'user-info_cdrlrecords',
path: '/userInfo/cdrlrecords',
component: 'view.userInfo_cdrlrecords',
meta: {
title: 'cdr记录',
i18nKey: 'view.userInfo_cdrlrecords',
order:22,
hideInMenu: true
}
}
]
},