flat: 添加期望薪资等等

This commit is contained in:
Apcallover
2024-05-20 10:30:34 +08:00
parent 255c80eaab
commit e970733bd0
9 changed files with 1067 additions and 771 deletions

View File

@@ -137,6 +137,9 @@ let leftUserOptions = {
}, {
label: '手机号',
prop: 'telphone',
}, {
label: "求职意愿",
prop: "willingJob",
}, {
label: "民族",
prop: "aac005",
@@ -436,13 +439,18 @@ export default {
async getRightSearchByUserId() {
const {currentPage, size} = this.rightPages
const ids = this.leftUserSelections.map(item => item.userId).join(',');
const willingJobs = this.leftUserSelections.map(item => item.willingJob);
const createTime = Date.now() + 3000
this.rightLoading = true
let params = {
ids, current: currentPage,
size,
}
let resData = await getSearchAllByUserId(params)
let paramsBody = {
willingJobs: willingJobs
}
console.log(params, paramsBody)
let resData = await getSearchAllByUserId(params, paramsBody)
if (resData.data.code === 200) {
const timed = createTime - Date.now() > 0 ? createTime - Date.now() : 0
setTimeout(() => {