[测评系统]--前端(用户答题页面)
linzhijie
2023-04-25 b79e4f19491338a53f31aa358081d19d4b6d23e8
src/router.js
@@ -118,6 +118,42 @@
          meta: { title: '' }
        }
      ]
    },
    {
      path: '/exam',
      component: Layout,
      children: [
        {
          path: 'values',
          component: () => import('@/views/exam/paper/values'),
          name: 'ExamPaperValues',
          meta: { title: 'values' }
        }
      ]
    },
    {
      path: '/exam',
      component: Layout,
      children: [
        {
          path: 'career_interests',
          component: () => import('@/views/exam/paper/career_interests'),
          name: 'ExamPaperCareerInterests',
          meta: { title: 'career_interests' }
        }
      ]
    },
    {
      path: '/pdf',
      component: Layout,
      children: [
        {
          path: 'view',
          component: () => import('@/views/pdf/reportView'),
          name: 'reportView',
          meta: { title: '报告预览' }
        }
      ]
    }
  ]
})