一体机删除薪酬信息、筛选的时候增加工位数

This commit is contained in:
francis_fh
2026-01-14 12:19:04 +08:00
parent 74b9c32b03
commit 33faac2ff2

View File

@@ -75,9 +75,9 @@
<!-- H5端专用按钮 -->
<!-- #ifdef H5 -->
<view class="h5-action-buttons" v-if="shouldShowJobSeekerContent">
<view class="h5-action-btn press-button" @click="handleH5SalaryClick">
<!-- <view class="h5-action-btn press-button" @click="handleH5SalaryClick">
<view class="btn-text">薪酬信息</view>
</view>
</view> -->
<view class="h5-action-btn press-button" @click="handleServiceClick('resume-creation')">
<view class="btn-text">简历指导</view>
</view>
@@ -996,7 +996,7 @@ function getJobRecommend(type = 'add') {
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
}
let params = {
pageSize: pageState.pageSize,
pageSize: pageState.pageSize + 10,
sessionId: useUserStore().seesionId,
...pageState.search,
...conditionSearch.value,
@@ -1084,7 +1084,7 @@ function getJobList(type = 'add') {
$api.createRequest('/app/job/list', params).then((resData) => {
const { rows, total } = resData;
if (type === 'add') {
const str = pageState.pageSize * (pageState.page - 1);
const str = pageState.pageSize * (pageState.page - 1) + 10;
const end = list.value.length;
const reslist = dataToImg(rows);
list.value.splice(str, end, ...reslist);