Enhance job listing functionality and navigation styles

- Added education filter to job recommendation and listing APIs across multiple components.
- Updated policy list page with custom navigation for H5 and improved layout.
- Refactored policy detail handling to streamline error management and testing data injection.
This commit is contained in:
2026-05-07 11:22:47 +08:00
parent 2df9502640
commit c4054f2a4a
7 changed files with 656 additions and 45 deletions

View File

@@ -983,6 +983,7 @@ function getJobRecommend(type = "add") {
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
}
let params = {
education: '3,4,5,6',
pageSize: pageState.pageSize,
sessionId: useUserStore().seesionId,
...pageState.search,
@@ -1051,6 +1052,7 @@ function getJobList(type = "add") {
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
}
let params = {
education: '3,4,5,6',
current: pageState.page,
pageSize: pageState.pageSize,
...pageState.search,

View File

@@ -983,6 +983,7 @@ function getJobRecommend(type = "add") {
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
}
let params = {
education: '3,4,5,6',
pageSize: pageState.pageSize,
sessionId: useUserStore().seesionId,
...pageState.search,
@@ -1051,6 +1052,7 @@ function getJobList(type = "add") {
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
}
let params = {
education: '3,4,5,6',
current: pageState.page,
pageSize: pageState.pageSize,
...pageState.search,