123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
-
- export default [
- { path: '/login', component: './Login', layout: false, access: 'login' },
- {
- path: '/',
- redirect: '/company/list',
- },
- {
- path: '/login',
- component: './Login',
- layout: false
- },
- {
- name: '企业管理',
- access: 'company',
- path: '/company',
- routes: [
- {
- name: '企业列表',
- path: '/company/list',
- component: './Company/List',
- access: 'member',
- },
- {
- name: 'VIP列表',
- path: '/company/vip',
- component: './Company/Vip',
- access: 'vip',
- },
- {
- name: '部门管理',
- path: '/company/department',
- component: './Company/Department',
- access: 'department',
- },
- {
- name: '职位管理',
- path: '/company/post',
- component: './Company/Post',
- access: 'job',
- }
- ]
- },
- {
- name: '求职者管理',
- access: 'jobSeeker',
- path: '/jobseeker',
- routes: [
- {
- name: '简历列表',
- path: '/jobseeker/list',
- component: './Jobseeker/List',
- access: 'jobResume',
- },
- {
- name: '求职者账号列表',
- path: '/jobseeker/account',
- component: './Jobseeker/Account',
- access: 'customerList',
- }
- ]
- },
- {
- name: '招聘会管理',
- access: 'jobFair',
- path: '/fair',
- routes: [
- {
- name: '招聘会列表',
- path: '/fair/list',
- component: './Fair/List',
- access: 'jobFairList',
- },
- // {
- // name: '参与企业列表',
- // path: '/fair/company',
- // component: './Fair/Company',
- // access: 'jobFairCompany',
- // }
- ]
- },
- {
- name: '新闻资讯',
- access: 'information',
- path: '/information',
- routes: [
- {
- name: '栏目/频道',
- path: '/information/section',
- component: './Information/Section',
- access: 'section',
-
- },
- {
- name: '文章列表',
- path: '/information/article',
- component: './Information/Article',
- access: 'article',
-
- }
- ]
- },
- {
- name: '广告/活动管理',
- access: 'advertisement',
- path: '/advertisement',
- routes: [
- {
- name: '广告/活动列表',
- path: '/advertisement/list',
- component: './Advertisement/List',
- access: 'advertisementList',
-
- },
- {
- name: '广告/活动投放',
- path: '/advertisement/putin',
- component: './Advertisement/Putin',
- access: 'putIn',
-
- }
- ]
- },
- {
- name: '春节引流活动管理',
- access: 'activity',
- path: '/activity',
- routes: [
- {
- name: '活动门店',
- path: '/activity/list',
- component: './Activity/List',
- access: 'activityAddress',
-
- }
- ]
- },
-
- {
- name: '账号权限',
- path: '/permission',
- access: 'permission',
- routes: [
- {
- name: '权限管理',
- path: '/permission/list',
- component: './Permission/List',
- access: 'list',
- },
- {
- name: '角色管理',
- path: '/permission/role',
- component: './Permission/Role',
- access: 'role',
-
- },
- {
- name: '账号管理',
- path: '/permission/account',
- component: './Permission/Account',
- access: 'account',
- }
- ]
- },
- {
- name: '系统管理',
- path: '/setting',
- routes: [
- {
- name: '系统设置',
- path: '/setting/system',
- component: './Setting/System',
- access: 'other',
-
- },
- {
- name: '字典设置',
- path: '/setting/dictionary',
- component: './Setting/Dictionary',
- access: 'dictionaryList',
-
- },
- {
- name: '分词器',
- path: '/setting/other',
- component: './Setting/Other',
- access: 'otherTokenizer',
-
- }
- ]
- },
- {
- name: '反馈管理',
- path: '/feedback/list',
- component: './Feedback',
- access: 'feedback',
- },
- // {
- // name: '统计管理',
- // path: '/setting',
- // routes: [
- // {
- // name: '系统设置',
- // path: '/setting/system',
- // component: './Setting/System',
- // },
- // {
- // name: '字典设置',
- // path: '/setting/dictionary',
- // component: './Setting/Dictionary'
- // },
- // {
- // name: '分词器',
- // path: '/setting/other',
- // component: './Setting/Other',
- // }
- // ]
- // }
- ]
|