blob: 343a71e265d510dc9e4daa98b987e4bbfb8063da [file] [log] [blame]
huibing.xie1f1606f2018-08-20 15:46:55 +08001/* Layout */
2// import Layout from '../views/layout/Layout'
3
4const menuList = [
5 {
6 path: '/dictionary',
7 code: 'dictionary',
8 meta: { title: '数据字典管理', icon: 'dictionary' },
9 children: [
10 {
11 path: 'department',
12 code: 'Department',
13 resource: '/views/systemmanagement/department/index',
14 meta: { title: '院系部门管理', icon: 'department' }
15 },
16 {
17 path: 'major',
18 code: 'Major',
19 resource: '/views/systemmanagement/major/index',
20 meta: { title: '专业管理', icon: 'major' }
21 },
22 {
23 path: 'class',
24 code: 'Class',
25 resource: '/views/systemmanagement/class/index',
26 meta: { title: '班级管理', icon: 'class' }
27 },
28 {
29 path: 'schoolyear',
30 code: 'SchoolYear',
31 resource: '/views/systemmanagement/schoolyear/index',
32 meta: { title: '学年管理', icon: 'schoolyear' }
33 },
34 {
35 path: 'rostersyncinterface',
36 code: 'RosterSyncInterface',
37 resource: '/views/systemmanagement/rostersyncinterface/index',
38 meta: { title: '名单同步接口设置', icon: 'rostersyncinterface' }
39 },
40 {
41 path: 'auditscope',
42 code: 'AuditScope',
43 resource: '/views/systemmanagement/auditscope/index',
44 meta: { title: '审核学生范围控制', icon: 'auditscope' }
45 },
46 {
47 path: 'autoaudittype',
48 code: 'AutoAuditType',
49 resource: '/views/systemmanagement/autoaudittype/index',
50 meta: { title: '离校自动审核类型设置', icon: 'autoaudittype' }
51 }
52 ]
53 },
54 {
55 path: '/workteam',
56 code: 'workteam',
57 meta: { title: '工作队伍管理', icon: 'workteam' },
58 children: [
59 {
60 path: 'departmentleader',
61 code: 'Departmentleader',
62 resource: '/views/workteam/departmentleader/index',
63 meta: { title: '学院负责人信息管理', icon: 'departmentleader' }
64 },
65 {
66 path: 'instructor',
67 code: 'Instructor',
68 resource: '/views/workteam/instructor/index',
69 meta: { title: '辅导员信息管理', icon: 'instructor' }
70 }
71 ]
72 },
73 {
74 path: '/news',
75 code: 'news',
76 meta: { title: '新闻公告管理', icon: 'news' },
77 children: [
78 {
79 path: 'newspublish',
80 code: 'NewsPublish',
81 resource: '/views/news/newspublish/index',
82 meta: { title: '新闻公告发布', icon: 'newspublish' }
83 },
84 {
85 path: 'newview',
86 code: 'NewsView',
87 resource: '/views/news/newview/index',
88 meta: { title: '新闻公告查看', icon: 'newview' }
89 }
90 ]
huibing.xief40b2b92018-08-22 17:12:47 +080091 },
92 {
93 path: '/statistical',
94 code: 'statistical',
95 meta: { title: '离校统计查询', icon: 'news' },
96 children: [
97 {
98 path: 'handling',
99 code: 'HandlingSituation',
100 resource: '/views/statistical/handling/index',
101 meta: { title: '办理情况查询', icon: 'handling' }
102 },
103 {
104 path: 'nodereport',
105 code: 'nodereport',
106 resource: '/views/news/newview/index',
107 meta: { title: '环节统计报表查询', icon: 'newview' }
108 }
109 ]
huibing.xie1f1606f2018-08-20 15:46:55 +0800110 }
111]
112
113export default{
114 getMenuList: config => {
115 return {
116 items: menuList,
117 code: 200
118 }
119 }
120}