quanyawei
2023-10-18 e86b3edfe6d0cad7d744828a65ca1330e84fdcde
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