recruit.js 822 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // 门墩儿招聘
  2. import Layout from '@/layout'
  3. const recruit = [
  4. {
  5. path: '/recruit',
  6. component: Layout,
  7. name: 'recruit',
  8. children: [
  9. {
  10. path: '/recruit/position',
  11. component: () => import('@/views/recruit/position'),
  12. name: 'recruitPosition',
  13. meta: {
  14. title: '职位'
  15. }
  16. },
  17. {
  18. path: '/recruit/company',
  19. component: () => import('@/views/recruit/company'),
  20. name: 'recruitCompany',
  21. meta: {
  22. title: '公司'
  23. }
  24. },
  25. {
  26. path: '/recruit/position/details/:id',
  27. component: () => import('@/views/recruit/position/components/details'),
  28. name: 'recruitPositionDetails',
  29. meta: {
  30. title: '职位详情'
  31. }
  32. }
  33. ]
  34. }
  35. ]
  36. export default recruit