H5
linzhijie
2023-04-27 9d8ad6de3ea97f5b1fe0c7034c2cb24e0fd1540c
src/router.js
@@ -119,18 +119,54 @@
        }
      ]
    },
      {
        path: '/exam',
        component: Layout,
        children: [
          {
            path: 'values',
            component: () => import('@/views/exam/paper/values'),
            name: 'ExamPaperValues',
            meta: { title: 'values' }
          }
        ]
      }
    {
      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: '报告预览' }
        }
      ]
    },
    {
      path: '/pdf',
      component: Layout,
      children: [
        {
          path: 'h5',
          component: () => import('@/views/pdf/reportH5'),
          name: 'reportView',
          meta: { title: '报告预览' }
        }
      ]
    }
  ]
})