12345678910111213141516171819202122232425262728293031323334353637 |
- // 门墩儿招聘
- import Layout from '@/layout'
- const recruit = [
- {
- path: '/recruit',
- component: Layout,
- name: 'recruit',
- children: [
- {
- path: '/recruit/position',
- component: () => import('@/views/recruit/position'),
- name: 'recruitPosition',
- meta: {
- title: '职位'
- }
- },
- {
- path: '/recruit/company',
- component: () => import('@/views/recruit/company'),
- name: 'recruitCompany',
- meta: {
- title: '公司'
- }
- },
- {
- path: '/recruit/position/details/:id',
- component: () => import('@/views/recruit/position/components/details'),
- name: 'recruitPositionDetails',
- meta: {
- title: '职位详情'
- }
- }
- ]
- }
- ]
- export default recruit
|