123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // 个人路由信息
- import Layout from '@/layout'
- const personal = [
- {
- path: '/personalAccount',
- component: Layout,
- name: 'personalAccount',
- children: [
- {
- path: '/personalAccount',
- component: () => import('@/views/Home/personal/account/index'),
- meta: {
- title: '账号设置'
- },
- children: [
- {
- path: '/personalAccount/editPassword',
- component: () => import('@/views/Home/personal/account/dynamic/editPassword'),
- meta: {
- title: '修改密码'
- }
- },
- {
- path: '/personalAccount/accountBinding',
- component: () => import('@/views/Home/personal/account/dynamic/accountBinding'),
- meta: {
- title: '账号加入'
- }
- },
- {
- path: '/personalAccount/realAuthentication',
- component: () => import('@/views/Home/personal/account/dynamic/realAuthentication'),
- meta: {
- title: '实名认证'
- }
- },
- {
- path: '/personalAccount/privacySettings',
- component: () => import('@/views/Home/personal/account/dynamic/privacySettings'),
- meta: {
- title: '隐私设置'
- }
- }
- ]
- }
- ]
- },
- {
- path: '/resume',
- component: Layout,
- name: 'resume',
- meta: {
- title: '在线简历'
- },
- children: [
- {
- path: '/resume',
- component: () => import('@/views/resume/index')
- }
- ]
- },
- {
- path: '/personalCenter',
- component: Layout,
- name: 'personalCenter',
- meta: {
- title: '个人中心'
- },
- children: [
- {
- path: '/personalCenter',
- component: () => import('@/views/PersonalCenter/index')
- }
- ]
- },
- {
- path: '/enterprise/register',
- component: Layout,
- name: 'enterpriseRegister',
- children: [
- {
- path: '/enterprise/register',
- component: () => import('@/views/personal/components/register'),
- meta: {
- title: '注册新企业'
- },
- },
- {
- path: '/enterprise/joiningEnterprise',
- component: () => import('@/views/personal/components/joiningEnterprise'),
- meta: {
- title: '加入企业'
- }
- },
- {
- path: '/enterprise/inReview',
- component: () => import('@/views/personal/components/inReview.vue'),
- meta: {
- title: '申请信息'
- }
- }
- ]
- },
- {
- path: '/myPublicRecruitment',
- component: Layout,
- name: 'myPublicRecruitment',
- meta: {
- title: '我的众聘'
- },
- children: [
- {
- path: '/myPublicRecruitment',
- component: () => import('@/views/personal/myPublicRecruitment/index'),
- meta: {
- title: '我的众聘'
- },
- }
- ]
- },
- ]
- export default personal
|