Refactor venue booth functions for outdoor fairs
- Renamed `getVenueBoothList` to `getOutdoorFairBoothMap` for clarity. - Updated the endpoint to fetch booth maps for outdoor fairs. - Renamed `saveVenueBoothList` to `saveOutdoorFairBoothMap` to reflect its purpose. - Adjusted the endpoint for saving booth maps for outdoor fairs. - Removed the redundant `getOutdoorFairBoothMap` function as it was previously defined.
This commit is contained in:
@@ -37,7 +37,7 @@ export default [
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/job-portal',// 求职者首页
|
||||
path: '/job-portal', // 求职者首页
|
||||
layout: false,
|
||||
routes: [
|
||||
{
|
||||
@@ -45,63 +45,63 @@ export default [
|
||||
component: './JobPortal',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/list',// 职位列表
|
||||
path: '/job-portal/list', // 职位列表
|
||||
component: './JobPortal/List',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/detail',// 职位详情
|
||||
path: '/job-portal/detail', // 职位详情
|
||||
component: './JobPortal/Detail',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/resume',// 简历页面(PC布局)
|
||||
path: '/job-portal/resume', // 简历页面(PC布局)
|
||||
component: './JobPortal/Resume',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/profile',// 求职者我的页面
|
||||
path: '/job-portal/profile', // 求职者我的页面
|
||||
component: './JobPortal/Profile',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/personal-center',// 个人中心页面
|
||||
path: '/job-portal/personal-center', // 个人中心页面
|
||||
component: './JobPortal/PersonalCenter',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/personal-center/applications',// 已投递岗位列表
|
||||
path: '/job-portal/personal-center/applications', // 已投递岗位列表
|
||||
component: './JobPortal/PersonalCenter/Applications',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/personal-center/favorites',// 收藏岗位列表
|
||||
path: '/job-portal/personal-center/favorites', // 收藏岗位列表
|
||||
component: './JobPortal/PersonalCenter/Favorites',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/personal-center/footprints',// 访问足迹岗位列表
|
||||
path: '/job-portal/personal-center/footprints', // 访问足迹岗位列表
|
||||
component: './JobPortal/PersonalCenter/Footprints',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/personal-center/showcase',// 我的风采
|
||||
path: '/job-portal/personal-center/showcase', // 我的风采
|
||||
component: './JobPortal/PersonalCenter/Showcase',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/personal-center/interviews',// 我的面试邀约
|
||||
path: '/job-portal/personal-center/interviews', // 我的面试邀约
|
||||
component: './JobPortal/PersonalCenter/Interviews',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/message',// 消息通知页面
|
||||
path: '/job-portal/message', // 消息通知页面
|
||||
component: './JobPortal/Message',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/career-recommendation',// 职业推荐
|
||||
path: '/job-portal/career-recommendation', // 职业推荐
|
||||
component: './JobPortal/CareerRecommendation',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/policy',// 政策列表
|
||||
path: '/job-portal/policy', // 政策列表
|
||||
component: './JobPortal/Policy',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/policy/detail',// 政策详情
|
||||
path: '/job-portal/policy/detail', // 政策详情
|
||||
component: './JobPortal/Policy/Detail',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/live-recruitment',// 直播带岗
|
||||
path: '/job-portal/live-recruitment', // 直播带岗
|
||||
component: './JobPortal/LiveRecruitment',
|
||||
},
|
||||
],
|
||||
@@ -231,11 +231,6 @@ export default [
|
||||
path: '/jobfair/venue-info',
|
||||
component: './Jobfair/Venueinfo',
|
||||
},
|
||||
{
|
||||
name: '场地信息详情',
|
||||
path: '/jobfair/venue-info/detail',
|
||||
component: './Jobfair/Venueinfo/Detail',
|
||||
},
|
||||
{
|
||||
name: '户外招聘会详情',
|
||||
path: '/jobfair/outdoor-fair/detail',
|
||||
@@ -246,16 +241,6 @@ export default [
|
||||
path: '/jobfair/cross-city-fair',
|
||||
component: './Jobfair/Crosscityfair',
|
||||
},
|
||||
{
|
||||
name: '室内固定摊位招聘会管理',
|
||||
path: '/jobfair/indoor-job-fair',
|
||||
component: './Jobfair/Indoorjobfair',
|
||||
},
|
||||
{
|
||||
name: '室内固定摊位招聘会详情',
|
||||
path: '/jobfair/indoor-job-fair/detail',
|
||||
component: './Jobfair/Indoorjobfair/Detail',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -270,7 +255,7 @@ export default [
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/management/enterprise-showcase',// 企业风采
|
||||
path: '/management/enterprise-showcase', // 企业风采
|
||||
layout: false,
|
||||
component: './Management/EnterpriseShowcase',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user