12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // 门墩儿招聘
- 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: '职位',
- noLogin: true
- }
- },
- {
- path: '/recruit/company',
- component: () => import('@/views/recruit/company'),
- name: 'recruitCompany',
- meta: {
- title: '公司',
- noLogin: true
- }
- },
- {
- path: '/recruit/position/details/:id',
- component: () => import('@/views/recruit/position/components/details'),
- name: 'recruitPositionDetails',
- meta: {
- title: '职位详情',
- noLogin: true
- }
- }
- ]
- },
- {
- path: '/company/details/:id',
- component: Layout,
- name: 'companyDetails',
- meta: {
- title: '企业详情'
- },
- children: [
- {
- path: '/company/details/:id',
- component: () => import('@/views/enterprise/components/enterpriseDetails.vue'),
- meta: {
- title: '企业详情',
- noLogin: true
- },
- }
- ]
- }
- ]
- export default recruit
|