feat: add job fair region type functionality and improve job fair detail pages
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled
- Introduced job fair region type selection in EditModal and PublicJobFairList components. - Enhanced JobFairDetail page to display job fair region type using DictTag. - Updated API types to include jobFairRegionType for better data handling. - Created new JobPortal pages for displaying job fair details with improved styling. - Added CSS styles for job fair detail and list pages to enhance user experience. - Implemented loading states and error handling for job fair data fetching.
This commit is contained in:
@@ -43,6 +43,8 @@ export default {
|
||||
// 配置了这个可以从 http 代理到 https
|
||||
// 依赖 origin 的功能可能需要这个,比如 cookie
|
||||
changeOrigin: true,
|
||||
// 测试环境目前使用 IP 访问 HTTPS,证书域名不匹配;仅影响本地开发代理。
|
||||
secure: false,
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
@@ -48,6 +48,14 @@ export default [
|
||||
path: '/job-portal/list', // 职位列表
|
||||
component: './JobPortal/List',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/job-fair', // 招聘会(线上、户外)
|
||||
component: './JobPortal/JobFair',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/job-fair/detail', // 招聘会详情
|
||||
component: './JobPortal/JobFair/Detail',
|
||||
},
|
||||
{
|
||||
path: '/job-portal/detail', // 职位详情
|
||||
component: './JobPortal/Detail',
|
||||
|
||||
Reference in New Issue
Block a user