xiangpei
2024-05-13 ce1f77d4a12083a6f94324d764b46e085e90d36e
src/router.js
@@ -87,6 +87,25 @@
    ]
  },
  {
    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: '视频分类'
        }
      }
    ]
  },
  {
    path: '/exam',
    component: Layout,
    name: 'ExamPage',
@@ -296,6 +315,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',