123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- export const devMenu = [
- {
- path: '',
- name: '测试',
- module: 'center',
- children: [
- {
- path: '/list',
- name: '测试列表',
- },
- {
- path: '/detail',
- name: '测试详情',
- },
- ],
- },
- {
- path: '',
- name: '系统管理',
- module: 'center',
- children: [
- {
- path: '/director/index',
- name: '班主任管理',
- module: 'center',
- },
- {
- path: '/dept/index',
- name: '部门管理',
- module: 'center',
- },
- {
- path: '/location/index',
- name: '地点管理',
- module: 'center',
- },
- {
- path: '/bedroom/index',
- name: '寝室管理',
- module: 'center',
- },
- {
- path: '/classes/index',
- name: '班级管理',
- module: 'center',
- },
- {
- path: '/subject/index',
- name: '科目管理',
- module: 'center',
- },
- ],
- },
- {
- path: '/plan/index',
- name: '计划管理',
- module: 'center',
- },
- {
- path: '/teacher/index',
- name: '教师管理',
- module: 'center',
- },
- {
- path: '/student/index',
- name: '学生管理',
- module: 'center',
- },
- {
- path: '/work/index',
- name: '作业管理',
- module: 'center',
- },
- {
- path: '',
- name: '调查问卷',
- module: 'center',
- children: [
- { path: '/questionnaire/index', name: '问卷管理' },
- { path: '/itembank/index', name: '题库管理' },
- ],
- },
- //学校
- {
- path: '',
- name: '测试',
- module: 'school',
- children: [
- {
- path: '/list',
- name: '测试列表',
- },
- {
- path: '/detail',
- name: '测试详情',
- },
- ],
- },
- {
- path: '/plan/index',
- name: '计划管理', //上报名单
- module: 'school',
- },
- {
- path: '/teacher/index',
- name: '教师确认',
- module: 'school',
- },
- {
- path: '/leave/index',
- name: '请假管理',
- module: 'school',
- },
- //班主任
- {
- path: '',
- name: '测试',
- module: 'director',
- children: [
- {
- path: '/list',
- name: '测试列表',
- },
- {
- path: '/detail',
- name: '测试详情',
- },
- ],
- },
- {
- path: '/plan/index',
- name: '计划管理', //上报名单
- module: 'director',
- },
- {
- path: '/classes/index',
- name: '班级管理',
- module: 'director',
- },
- ];
|