zhouwenxuan
2023-11-29 88d7869b422a1070a0ea8efd22613997e9dbe2fe
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import Layout from '@/layout'
const menu = {
    adminMenu: [
        {
            path: '/institution',
            name: 'Institution',
            meta: { title: '机构公示',icon: 'form',affix: true }
        },
        {
            path: '/notice',
            name: 'Notice',
            meta: { title: '公告发布',icon: 'form', affix: true }
        },
        {
            path: '/law',
            name: 'Law',
            meta: { title: '法律法规',icon: 'form', affix: true }
        },
        {
            path: '/userManage',
            redirect: '/userManage/supervise',
            meta: { title: '用户管理',icon: 'form'},
            children: [
                {
                    path: 'supervise',
                    name: 'supervise',
                    meta: { title: '监管用户管理',icon: 'form'}
                },
                {
                    path: 'institutionUser',
                    name: 'institutionUser',
                    meta: { title: '机构用户管理',icon: 'form'}
                },
                {
                    path: 'expertUsers',
                    name: 'expertUsers',
                    meta: { title: '专家用户管理',icon: 'form'}
                }
            ]
        },
        {
            path: '/expertManage',
            redirect: '/userManage/supervise',
            meta: { title: '厅专家库管理',icon: 'form'},
            children: [
                {
                    path: 'expert',
                    name: 'expert',
                    meta: { title: '厅专家库',icon: 'form'}
                },
                {
                    path: 'record',
                    name: 'record',
                    meta: { title: '专家申请记录',icon: 'form'}
                }
            ]
        },
        {
            path: '/baseSet',
            redirect: '/baseSet/evaluate',
            meta: { title: '基础设置',icon: 'form'},
            children: [
                {
                    path: 'evaluate',
                    name: 'evaluate',
                    meta: { title: '评价类型管理',icon: 'form'}
                },
                {
                    path: 'business',
                    name: 'business',
                    meta: { title: '业务范围',icon: 'form'}
                },
                {
                    path: 'area',
                    name: 'area',
                    meta: { title: '地区维护',icon: 'form'}
                }
 
            ]
        },
 
    ]
}
export default menu;