123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- export const center = [
- {
- path: '',
- name: '系统管理',
- module: 'center',
- children: [
- {
- path: '/dept/index',
- name: '部门管理',
- module: 'center',
- },
- {
- path: '/school/index',
- name: '学校管理',
- module: 'center',
- },
- {
- path: '/location/index',
- name: '班级管理',
- module: 'center',
- },
- {
- path: '/bedroom/index',
- name: '寝室管理',
- module: 'center',
- },
- {
- path: '/subject/index',
- name: '科目管理',
- module: 'center',
- },
- {
- path: '/duty/index',
- name: '职责说明',
- module: 'center',
- },
- {
- path: '/lesson/index',
- name: '课表模板',
- module: 'center',
- },
- ],
- },
- {
- path: '',
- name: '人员管理',
- module: 'center',
- children: [
- {
- path: '/director/index',
- name: '班主任管理',
- module: 'center',
- },
- {
- path: '/teacher/index',
- name: '教师管理',
- module: 'center',
- },
- {
- path: '/student/index',
- name: '学生管理',
- module: 'center',
- },
- {
- path: '/leave/index',
- name: '请假查看',
- module: 'center',
- },
- ],
- },
- {
- path: '/plan/index',
- name: '计划管理',
- module: 'center',
- },
- {
- path: '',
- name: '新计划管理',
- module: 'center',
- children: [
- {
- path: '/newPlan/index',
- name: '年度计划',
- module: 'center',
- },
- {
- path: '/newPlan/template',
- name: '计划模板',
- module: 'center',
- },
- ],
- },
- {
- path: '/work/index',
- name: '作业管理',
- module: 'center',
- },
- // {
- // path: '/timeTable/index',
- // name: '课表管理',
- // module: 'center',
- // },
- {
- path: '',
- name: '调查问卷',
- module: 'center',
- children: [
- { path: '/questionnaire/index', name: '问卷管理' },
- { path: '/itembank/index', name: '问卷题库' },
- { path: '/questionstate/index', name: '问卷进度' },
- ],
- },
- ];
- export const school = [
- {
- path: '',
- name: '测试',
- module: 'school',
- children: [
- {
- path: '/list',
- name: '测试列表',
- },
- {
- path: '/detail',
- name: '测试详情',
- },
- ],
- },
- {
- path: '/plan/index',
- name: '计划管理', //上报名单
- module: 'school',
- },
- {
- path: '/newPlan/index',
- name: '新计划管理', //上报名单
- module: 'school',
- },
- {
- path: '/teacher/index',
- name: '教师确认',
- module: 'school',
- },
- {
- path: '/leave/index',
- name: '请假管理',
- module: 'school',
- },
- ];
- export const director = [
- {
- path: '',
- name: '测试',
- module: 'director',
- children: [
- {
- path: '/list',
- name: '测试列表',
- },
- {
- path: '/detail',
- name: '测试详情',
- },
- ],
- },
- {
- path: '/plan/index',
- name: '计划管理', //上报名单
- module: 'director',
- },
- {
- path: '/newPlan/index',
- name: '新计划管理', //上报名单
- module: 'director',
- },
- {
- path: '/classes/index',
- name: '班级管理',
- module: 'director',
- },
- ];
- export const teacher = [
- {
- path: '/plan/index',
- name: '查看计划', //上报名单
- module: 'teacher',
- },
- ];
|