quanyawei
2024-04-03 b74ea56001fba65e67d9b39a5757dab4e4036858
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import MainLayout from '@/layout/main/MainLayout.vue';
 
const router={
    path:'/systemset',
    component:MainLayout,
    name:'/systemset',
    redirect:'/systemset/log',
    meta:{
        title:'系统设置',
        icon:'profile',
        i18n:'系统设置'
 
    },
    children:[{
        path:'log',
        name:'/systemset/log',
        component:()=>import('@/views/systemset/logmanage.vue'),
        meta:{
            title:'日志管理',
            i18n:'menu.system.logmanage'
        }
    },
    {
        path:'Dictionary',
        name:'/systemset/Dictionary',
        component:()=>import('@/views/systemset/dictionaryManage.vue'),
        meta:{
            title:'字典管理',
            i18n:'menu.system.dictmanage'
        }
    }
]
   
}
export default router