代码提交

This commit is contained in:
jiang 2025-11-20 13:41:21 +08:00
parent 168996c3a2
commit bc8250e7eb
1 changed files with 15 additions and 1 deletions

View File

@ -68,8 +68,22 @@ export const constantRoutes = [
children: [
{
path: 'index',
component: () => import('@/views/index'),
component: () => import('@/views/screen/wsScreen/index'),
name: 'Index',
meta: { title: '首页', icon: 'dashboard', affix: true }
},
]
},
{
path: '',
component: Layout,
redirect: 'index1',
children: [
{
path: 'index1',
component: () => import('@/views/index'),
name: 'Index1',
meta: { title: '快捷导航', icon: 'dashboard', affix: true }
},