mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
const functionRoute: AuthRoute.Route = {
|
|
name: 'function',
|
|
path: '/function',
|
|
component: 'basic',
|
|
children: [
|
|
{
|
|
name: 'function_tab',
|
|
path: '/function/tab',
|
|
component: 'self',
|
|
meta: {
|
|
title: 'Tab',
|
|
i18nTitle: 'routes.function.tab',
|
|
requiresAuth: true,
|
|
icon: 'ic:round-tab'
|
|
}
|
|
},
|
|
{
|
|
name: 'function_tab-detail',
|
|
path: '/function/tab-detail',
|
|
component: 'self',
|
|
meta: {
|
|
title: 'Tab Detail',
|
|
requiresAuth: true,
|
|
hide: true,
|
|
activeMenu: 'function_tab',
|
|
icon: 'ic:round-tab'
|
|
}
|
|
},
|
|
{
|
|
name: 'function_tab-multi-detail',
|
|
path: '/function/tab-multi-detail',
|
|
component: 'self',
|
|
meta: {
|
|
title: 'Tab Multi Detail',
|
|
requiresAuth: true,
|
|
hide: true,
|
|
multiTab: true,
|
|
activeMenu: 'function_tab',
|
|
icon: 'ic:round-tab'
|
|
}
|
|
}
|
|
],
|
|
meta: {
|
|
title: '功能',
|
|
i18nTitle: 'routes.function._value',
|
|
icon: 'icon-park-outline:all-application',
|
|
order: 6
|
|
}
|
|
};
|
|
|
|
export default functionRoute;
|