张卓
2022-09-20 5aead44ba1be31db948dfd8362c2bfcbedbbce29
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
import MainLayout from '@/layout/main/MainLayout.vue';
 
const router = {
    path: '/system',
    component: MainLayout,
    name: '/system',
    redirect: '/system/userAccount',
    meta: {
        title: '组织管理',
        showFlag: true,
        icon: 'form',
        i18n: `用户管理`,
    },
    children: [
        {
            path: 'userAccount',
            name: '/system/userAccount',
            component: () => import(/* webpackChunkName: "form" */ '@/views/system/userAccount.vue'),
            meta: {
                title: '用户管理',
                showFlag: true,
                i18n: `menu.system.userAccount`,
                flag:true
            },
        }
        ],
};
 
export default router;