一体机删除薪酬信息、筛选的时候增加工位数
This commit is contained in:
@@ -75,9 +75,9 @@
|
|||||||
<!-- H5端专用按钮 -->
|
<!-- H5端专用按钮 -->
|
||||||
<!-- #ifdef H5 -->
|
<!-- #ifdef H5 -->
|
||||||
<view class="h5-action-buttons" v-if="shouldShowJobSeekerContent">
|
<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 class="btn-text">薪酬信息</view>
|
||||||
</view>
|
</view> -->
|
||||||
<view class="h5-action-btn press-button" @click="handleServiceClick('resume-creation')">
|
<view class="h5-action-btn press-button" @click="handleServiceClick('resume-creation')">
|
||||||
<view class="btn-text">简历指导</view>
|
<view class="btn-text">简历指导</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -996,7 +996,7 @@ function getJobRecommend(type = 'add') {
|
|||||||
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
|
if (waterfallsFlowRef.value) waterfallsFlowRef.value.refresh();
|
||||||
}
|
}
|
||||||
let params = {
|
let params = {
|
||||||
pageSize: pageState.pageSize,
|
pageSize: pageState.pageSize + 10,
|
||||||
sessionId: useUserStore().seesionId,
|
sessionId: useUserStore().seesionId,
|
||||||
...pageState.search,
|
...pageState.search,
|
||||||
...conditionSearch.value,
|
...conditionSearch.value,
|
||||||
@@ -1084,7 +1084,7 @@ function getJobList(type = 'add') {
|
|||||||
$api.createRequest('/app/job/list', params).then((resData) => {
|
$api.createRequest('/app/job/list', params).then((resData) => {
|
||||||
const { rows, total } = resData;
|
const { rows, total } = resData;
|
||||||
if (type === 'add') {
|
if (type === 'add') {
|
||||||
const str = pageState.pageSize * (pageState.page - 1);
|
const str = pageState.pageSize * (pageState.page - 1) + 10;
|
||||||
const end = list.value.length;
|
const end = list.value.length;
|
||||||
const reslist = dataToImg(rows);
|
const reslist = dataToImg(rows);
|
||||||
list.value.splice(str, end, ...reslist);
|
list.value.splice(str, end, ...reslist);
|
||||||
|
|||||||
Reference in New Issue
Block a user