xiangpei
2024-03-15 4f39d2d3ee69813f106e06fc8a8d168ecccc941c
src/router.js
@@ -109,6 +109,45 @@
        hidden: true
      },
      {
        path: 'simulation/list',
        component: () => import('@/views/exam/simulation/list'),
        name: 'personalSimulationList',
        meta: { title: '模拟列表', noCache: true }
      },
      {
        path: 'personalSimulation/list',
        component: () => import('@/views/exam/personalSimulation/list'),
        name: 'personalSimulation',
        meta: { title: '个人模拟', noCache: true }
      },
      {
        path: 'personalRandomTemplate/list',
        component: () => import('@/views/exam/personalRandomTemplate/list'),
        name: 'personalSimulation',
        meta: { title: '随机试卷', noCache: true }
      },
      {
        path: 'personalRandomTemplate/edit',
        component: () => import('@/views/exam/personalRandomTemplate/edit'),
        name: 'personalSimulationEdit',
        meta: { title: '随机试卷', noCache: true, activeMenu: '/exam/personalRandomTemplate/list' },
        hidden: true
      },
      {
        path: 'personalSimulation/edit',
        component: () => import('@/views/exam/personalSimulation/edit'),
        name: 'personalSimulationEdit',
        meta: { title: '试卷编辑', noCache: true, activeMenu: '/exam/personalSimulation/list' },
        hidden: true
      },
      {
        path: 'personalSimulation/list/mathList',
        component: () => import('@/views/exam/mathList/list.vue'),
        name: 'multiplemathList',
        meta: { title: '模拟列表详情', noCache: true, activeMenu: '/exam/mathList/list' },
        hidden: true
      },
      {
        path: 'question/edit/multipleChoice',
        component: () => import('@/views/exam/question/edit/multiple-choice'),
        name: 'multipleChoicePage',
@@ -179,10 +218,23 @@
        meta: { title: '课目列表', noCache: true }
      },
      {
        path: 'department/list',
        component: () => import('@/views/education/department/list'),
        name: 'EducationDepartmentPage',
        meta: { title: '部门列表', noCache: true }
      },
      {
        path: 'subject/edit',
        component: () => import('@/views/education/subject/edit'),
        name: 'EducationSubjectEditPage',
        meta: { title: '课目编辑', noCache: true, activeMenu: '/education/subject/list' },
        hidden: true
      },
      {
        path: 'department/edit',
        component: () => import('@/views/education/department/edit'),
        name: 'EducationSubjectEditPage',
        meta: { title: '部门编辑', noCache: true, activeMenu: '/education/department/list' },
        hidden: true
      }
    ]
@@ -202,6 +254,25 @@
        component: () => import('@/views/answer/list'),
        name: 'AnswerPageList',
        meta: { title: '答卷列表', noCache: true }
      },
      {
        path: 'sheetStatistics',
        component: () => import('@/views/answer/sheetStatistics.vue'),
        name: 'AnswerPageList',
        meta: { title: '答卷统计', noCache: true }
      },
      {
        path: 'achievementStatistics',
        component: () => import('@/views/answer/achievementStatistics.vue'),
        name: 'AnswerPageList',
        meta: { title: '成绩统计', noCache: true }
      },
      {
        path: 'achievementStatistics/gradeDetails',
        component: () => import('@/views/exam/gradeDetails/list.vue'),
        name: 'AnswerPageList',
        meta: { title: '成绩统计详情', noCache: true, activeMenu: '/exam/gradeDetails/list' },
        hidden: true
      }
    ]
  },
@@ -247,6 +318,132 @@
      }
    ]
  },
  // {
  //   path: '/meeting',
  //   component: Layout,
  //   name: 'MeetingPage',
  //   meta: {
  //     title: '在线会议',
  //     icon: 'log'
  //   },
  //   alwaysShow: true,
  //   children: [
  //     {
  //       path: 'meeting/index',
  //       component: () => import('@/views/meeting/list'),
  //       name: 'MeetingUserPage',
  //       meta: { title: '在线会议', noCache: true }
  //     }
  //   ]
  // },
  {
    path: '/profile',
    component: Layout,
    hidden: true,
    children: [
      {
        path: 'index',
        component: () => import('@/views/profile/index'),
        name: 'Profile',
        meta: { title: '个人简介', icon: 'user', noCache: true }
      }
    ]
  },
  { path: '*',
    hidden: true,
    component: () => import('@/views/error-page/404'),
    meta: { title: '404', noCache: true }
  }
]
const deptAdminRoutes = [
  {
    path: '/redirect',
    component: Layout,
    hidden: true,
    children: [
      {
        path: '/redirect/:path*',
        component: () => import('@/views/redirect/index')
      }
    ]
  },
  {
    path: '/login',
    name: 'Login',
    hidden: true,
    component: () => import('@/views/login/index'),
    meta: { title: '登录' }
  },
  {
    path: '/',
    component: Layout,
    redirect: '/dashboard',
    children: [
      {
        path: 'dashboard',
        component: () => import('@/views/dashboard/index'),
        name: 'Dashboard',
        meta: { title: '主页', icon: 'home', affix: true }
      }
    ]
  },
  {
    path: '/exam',
    component: Layout,
    name: 'ExamPage',
    meta: {
      title: '卷题管理',
      icon: 'exam'
    },
    children: [
      {
        path: 'personalRandomTemplate/list',
        component: () => import('@/views/exam/personalRandomTemplate/list'),
        name: 'personalSimulation',
        meta: { title: '随机试卷', noCache: true }
      },
      {
        path: 'personalRandomTemplate/edit',
        component: () => import('@/views/exam/personalRandomTemplate/edit'),
        name: 'personalSimulationEdit',
        meta: { title: '随机试卷', noCache: true, activeMenu: '/exam/personalRandomTemplate/list' },
        hidden: true
      },
      {
        path: 'personalSimulation/edit',
        component: () => import('@/views/exam/personalSimulation/edit'),
        name: 'personalSimulationEdit',
        meta: { title: '试卷编辑', noCache: true, activeMenu: '/exam/personalSimulation/list' },
        hidden: true
      }
    ]
  },
  {
    path: '/answer',
    component: Layout,
    name: 'AnswerPage',
    meta: {
      title: '成绩管理',
      icon: 'answer'
    },
    alwaysShow: true,
    children: [
      {
        path: 'achievementStatistics',
        component: () => import('@/views/answer/achievementStatistics.vue'),
        name: 'AnswerPageList',
        meta: { title: '成绩统计', noCache: true }
      },
      {
        path: 'achievementStatistics/gradeDetails',
        component: () => import('@/views/exam/gradeDetails/list.vue'),
        name: 'AnswerPageList',
        meta: { title: '成绩统计详情', noCache: true, activeMenu: '/exam/gradeDetails/list' },
        hidden: true
      }
    ]
  },
  {
    path: '/profile',
    component: Layout,
@@ -273,5 +470,6 @@
export {
  constantRoutes,
  router
  router,
  deptAdminRoutes
}