flat: 暂存

This commit is contained in:
Apcallover
2024-04-16 10:41:03 +08:00
parent ebb6fe631f
commit d2eb30fd83
6 changed files with 646 additions and 618 deletions

View File

@@ -19,7 +19,7 @@
uni.showLoading({
title: ''
})
if (options.ticket) {
if (options.token) {
const that = this
console.log(options)
this.$store.dispatch("LoginByUsername", {
@@ -28,7 +28,7 @@
key: '',
code: '1111',
type: "account",
ticket: options.ticket,
token: options.token,
tenantId: website.tenantId
}).then((resp) => {
console.log('123', resp)

View File

@@ -507,9 +507,17 @@
areaModal,
industryModal
} = this.searchData;
nearMissionSearch(this.policyPage.current, this.policyPage.size, submitData["学历"],
submitData["工资"], industryModal?.industry, areaModal?.address1[0], areaModal?.address1[1]
).then(res => {
let params = {
current: this.policyPage.current,
size: this.policyPage.size,
education: submitData["学历"],
salary: submitData["工资"],
industry: industryModal?.industry,
province: areaModal?.address1[0],
city: areaModal?.address1[1],
cityId: areaModal?.info[areaModal?.info?.length - 1]?.id
}
nearMissionSearch(params).then(res => {
if (this.policyPage.current === 1) {
this.policyContentList = [];
}
@@ -528,9 +536,17 @@
areaModal,
industryModal
} = this.searchData;
newMissionAllSearch(this.nearPage.current, this.nearPage.size, submitData["学历"],
submitData["工资"], industryModal?.industry, areaModal?.address1[0], areaModal?.address1[1]
).then(res => {
let params = {
current: this.nearPage.current,
size: this.nearPage.size,
education: submitData["学历"],
salary: submitData["工资"],
industry: industryModal?.info?.id,
province: areaModal?.address1[0],
city: areaModal?.address1[1],
cityId: areaModal?.info[areaModal?.info?.length - 1]?.id
}
newMissionAllSearch(params).then(res => {
if (this.nearPage.current === 1) {
this.companyList = [];
}
@@ -548,9 +564,18 @@
areaModal,
industryModal
} = this.searchData;
recommendMissionSearch(this.newPage.current, this.newPage.size, submitData["学历"],
submitData["工资"], industryModal?.industry, areaModal?.address1[0], areaModal?.address1[1]
).then(res => {
let params = {
current: this.policyPage.current,
size: this.policyPage.size,
education: submitData["学历"],
salary: submitData["工资"],
industry: industryModal?.info?.id,
province: areaModal?.address1[0],
city: areaModal?.address1[1],
wageUnitCategory: submitData["wageUnitCategory"],
cityId: areaModal?.info[areaModal?.info?.length - 1]?.id
}
recommendMissionSearch(params).then(res => {
if (this.newPage.current === 1) {
this.newList = [];
}