[测评系统]--前端(用户答题页面)
阳洁
2023-05-16 2e395c5446a74cf66e72976ad2aae63f0cf38d10
src/router.js
@@ -118,6 +118,48 @@
          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: '/report',
      component: Layout,
      children: [
        {
          path: 'view',
          component: () => import('@/views/report/reportView'),
          name: 'reportView',
          meta: { title: 'PDF报告' }
        }
      ]
    },
    {
      path: '/report/h5',
      component: () => import('@/views/report/reportH5'),
      name: 'reportH5',
      meta: { title: '个人反馈报告' }
    }
  ]
})