import access from "@/access"; export default [ { path: '/register', component: './Register', layout: false }, // 求职首页 { flatMenu: false, name: '求职·招聘', path: '/', access: 'talent', routes: [ { path: '/', redirect: '/talent/home', }, { name: '求职·招聘', path: '/talent/home', component: './Talent/Home', access: 'talenthome' }, { name: '搜索·职位', path: '/talent/search/job', component: './Talent/Search/Job', access: 'talentsearchjob' }, { name: '搜索·企业', path: '/talent/search/company', component: './Talent/Search/Company', access: 'talentsearchcompany' }, { name: '招聘会', path: '/talent/fair', component: './Talent/Fair', access: 'talentfair' }, { name: '资讯·下载', path: '/talent/information', component: './Talent/Information', access: 'talentinformation' }, // { // name: '下载专区', // path: '/talent/download', // component: './Talent/Download', // access: 'talentdownload' // }, { name: '关于我们', path: '/talent/about', component: './Talent/About', access: 'talentabout' }, { path: '/talent/job/detail', component: './Talent/Detail/Job', access: 'talentjobdetail' }, { path: '/talent/company/detail', component: './Talent/Detail/Company', access: 'talentCompanydetail' }, { path: '/talent/resume/detail', component: './Talent/Detail/Resume', access: 'talentResumedetail' }, { path: '/talent/fair/detail', component: './Talent/Fair/Detail', access: 'talentfairdetail' }, { path: '/talent/information/detail', component: './Talent/Information/Detail', access: 'talentinformationdetail' }, ] }, // 科创园 { flatMenu: false, name: '科创园', path: '/sciencetechnologypark', access: 'sciencetechnologypark', routes: [ { name: '首页', path: '/sciencetechnologypark/home', component: './ScienceTechnologyPark/Home', access: 'sciencetechnologyparkhome' }, { name: '关于科创园', path: '/sciencetechnologypark/about', component: './ScienceTechnologyPark/About', access: 'sciencetechnologyparkabout' }, { name: '最新动态', path: '/sciencetechnologypark/news', component: './ScienceTechnologyPark/News', access: 'sciencetechnologyparknews' },{ name: '园区企业', path: '/sciencetechnologypark/company', component: './ScienceTechnologyPark/Company', access: 'sciencetechnologyparkcompany' }, { name: '通知公告', path: '/sciencetechnologypark/notice', component: './ScienceTechnologyPark/Notice', access: 'sciencetechnologyparknotice' }, { name: '成果转化', path: '/sciencetechnologypark/conversion', component: './ScienceTechnologyPark/Conversion', access: 'sciencetechnologyparkconversion' }, { name: '品牌活动', path: '/sciencetechnologypark/activity', component: './ScienceTechnologyPark/Activity', access: 'sciencetechnologyparkactivity' }, { name: '党建工作', path: '/sciencetechnologypark/construct', component: './ScienceTechnologyPark/Construct', access: 'sciencetechnologyparkconstruct' }, // { // name: '联系我们', // path: '/sciencetechnologypark/partymembercenter', // component: './ScienceTechnologyPark/PartyMemberCenter', // access: 'sciencetechnologyparkpartymembercenter' // } { path: '/sciencetechnologypark/information/detail', component: './ScienceTechnologyPark/Detail', access: 'sciencetechnologyparkformationdetail' }, ] }, // 合作伙伴 { name: '合作伙伴', path: '/partner', component: './Partner/Home', access: 'partner', }, // 求职者管理 { flatMenu: true, path: '/manage/jobseeker', access: 'managejobseeker', routes: [ { name: '个人中心', path: '/manage/jobseeker/home', component: './Manage/Jobseeker/Home', access: 'managejobseekerhome' }, { name: '我的简历', path: '/manage/jobseeker/resume', component: './Manage/Jobseeker/Resume', access: 'managejobseekerresume' }, { name: '预览简历', path: '/manage/jobseeker/detail', component: './Manage/Jobseeker/Detail', access: 'managejobseekerdetail' }, { name: '推荐职位', path: '/manage/jobseeker/recommend', component: './Manage/Jobseeker/Recommend', access: 'managejobseekerrecommend' }, { name: '设置', path: '/manage/jobseeker/setting', component: './Manage/Jobseeker/Setting', access: 'managejobseekerresetting' }, ] }, // 企业管理 { flatMenu: true, path: '/manage/company', access: 'managecompany', routes: [ { name: '个人中心', path: '/manage/company/home', component: './Manage/Company/Home', access: 'managecompanyhome' }, { name: '企业信息', path: '/manage/company/info', component: './Manage/Company/Info', access: 'managecompanyinfo' }, { name: '职位管理', path: '/manage/company/post', component: './Manage/Company/Post', access: 'managecompanypost' }, { name: '简历管理', path: '/manage/company/resume', component: './Manage/Company/Resume', access: 'managecompanyresume' }, { name: '人才推荐', path: '/manage/company/recommend', component: './Manage/Company/Recommend', access: 'managecompanyrecommend' }, { name: '部门管理', path: '/manage/company/department', component: './Manage/Company/Department', access: 'managecompanydepartment' }, { name: '设置', path: '/manage/company/setting', component: './Manage/Company/Setting', access: 'managecompanysetting' }, ] }, { path: '/forget', component: './Talent/Forget', layout: false }, ]