xiangpei
2024-07-11 595f08770a5dca4954c4fc0225d3585504a4bbdd
src/router.js
@@ -50,21 +50,21 @@
        path: '/exam/mark/paper',
        component: () => import('@/views/exam/exam/MarkPaper'),
        name: 'MarkPaper',
        meta: { title: '阅卷'},
        meta: { title: '阅卷', noCache: true },
        hidden: true
      },
      {
        path: '/exam/mark/paper/detail',
        component: () => import('@/views/exam/exam/MarkPaperDetail'),
        name: 'MarkPaperDetail',
        meta: { title: '阅卷'},
        meta: { title: '阅卷详情', noCache: true },
        hidden: true
      },
      {
        path: '/exam/monitor',
        component: () => import('@/views/exam/exam/monitor'),
        name: 'monitor',
        meta: { title: '监控'},
        meta: { title: '监控', noCache: true },
        hidden: true
      }
    ]
@@ -145,6 +145,13 @@
        component: () => import('@/views/exam/paper/edit'),
        name: 'ExamPaperEdit',
        meta: { title: '试卷编辑', noCache: true, activeMenu: '/exam/paper/list' },
        hidden: true
      },
      {
        path: 'paper/import',
        component: () => import('@/views/exam/paper/import'),
        name: 'ExamPaperImport',
        meta: { title: '试卷导入', noCache: true, activeMenu: '/exam/paper/list' },
        hidden: true
      },
      {
@@ -306,6 +313,23 @@
      }
    ]
  },
  {
    path: '/config',
    component: Layout,
    children: [
      {
        path: '/setting',
        name: 'SysSetting',
        meta: {
          title: '系统配置',
          icon: 'answer',
          affix: true
        },
        component: () => import('@/views/sys/SysSetting')
      },
    ]
  },
  // {
  //   path: '/message',
  //   component: Layout,
@@ -361,7 +385,8 @@
      }
    ]
  },
  { path: '*',
  {
    path: '*',
    hidden: true,
    component: () => import('@/views/error-page/404'),
    meta: { title: '404', noCache: true }