龚焕茏
2024-05-14 807436a80eb7a61d7417f864c8411d0525fc8953
src/router.js
@@ -70,6 +70,44 @@
        name: 'UserAdminEdit',
        meta: { title: '管理员编辑', noCache: true, activeMenu: '/user/admin/list' },
        hidden: true
      },
      {
        path: 'departmentExamine/list',
        component: () => import('@/views/user/departmentExamine/list'),
        name: 'departmentExamineList',
        meta: { title: '调动审核', noCache: true }
      },
      {
        path: 'tag/list',
        component: () => import('@/views/user/tag/list'),
        name: 'TagAdminPageList',
        meta: { title: '学生标签', noCache: true }
      },
      {
        path: 'tag/edit',
        component: () => import('@/views/user/tag/edit'),
        name: 'TagAdminEdit',
        meta: { title: '标签编辑', noCache: true, activeMenu: '/user/tag/list' },
        hidden: true
      }
    ]
  },
  {
    path: '/online/study',
    component: Layout,
    name: 'OnLineStudy',
    meta: {
      title: '在线学习',
      icon: 'exam'
    },
    children: [
      {
        path: 'video/type',
        component: () => import('@/views/onlineStudy/video/type'),
        name: 'VideoType',
        meta: {
          title: '视频分类', noCache: true
        }
      }
    ]
  },
@@ -139,6 +177,12 @@
        name: 'personalSimulationEdit',
        meta: { title: '试卷编辑', noCache: true, activeMenu: '/exam/personalSimulation/list' },
        hidden: true
      },
      {
        path: 'feedback/list',
        component: () => import('@/views/feedback/list'),
        name: 'feedback',
        meta: { title: '错题反馈', noCache: true }
      },
      {
        path: 'personalSimulation/list/mathList',
@@ -277,6 +321,31 @@
    ]
  },
  {
    path: '/questionAnswer',
    component: Layout,
    name: 'questionAnswerPage',
    meta: {
      title: '问答管理',
      icon: 'question'
    },
    alwaysShow: true,
    children: [
      {
        path: '/list',
        component: () => import('@/views/questionAnswer/list'),
        name: 'questionAnswerPage',
        meta: { title: '问答列表', noCache: true }
      },
      {
        path: '/edit',
        component: () => import('@/views/questionAnswer/edit'),
        name: 'questionAnswerEdit',
        meta: { title: '问答编辑', noCache: true, activeMenu: '/questionAnswer/list' },
        hidden: true
      }
    ]
  },
  {
    path: '/message',
    component: Layout,
    name: 'MessagePage',