|
@@ -334,9 +334,9 @@ export default {
|
|
|
let workData = JSON.parse(options.workData)
|
|
let workData = JSON.parse(options.workData)
|
|
|
this.selectedExper = workData.experience;
|
|
this.selectedExper = workData.experience;
|
|
|
this.selectedLevel = workData.education;
|
|
this.selectedLevel = workData.education;
|
|
|
- this.selectedSalary = workData.salaryRange;
|
|
|
|
|
- this.salaryTimes = workData.salaryTimes;
|
|
|
|
|
- this.welfareTag = workData.welfareTag;
|
|
|
|
|
|
|
+ this.selectedSalary = workData.salaryRange||'';
|
|
|
|
|
+ this.salaryTimes = workData.salaryTimes||'';
|
|
|
|
|
+ this.welfareTag = workData.welfareTag||'';
|
|
|
this.positionTag = workData.positionTag ? workData.positionTag.split(',') : [];
|
|
this.positionTag = workData.positionTag ? workData.positionTag.split(',') : [];
|
|
|
this.address = workData.address;
|
|
this.address = workData.address;
|
|
|
this.stationName.fullText = workData.address, //地址
|
|
this.stationName.fullText = workData.address, //地址
|
|
@@ -358,7 +358,6 @@ export default {
|
|
|
this.address = data.fullText;
|
|
this.address = data.fullText;
|
|
|
this.stationName = data;
|
|
this.stationName = data;
|
|
|
this.stationName.fullText = data.fullText;
|
|
this.stationName.fullText = data.fullText;
|
|
|
- console.log("接收到的地址数据jhl:", data);
|
|
|
|
|
|
|
|
|
|
this.stationName = data; // 赋值给当前页面变量
|
|
this.stationName = data; // 赋值给当前页面变量
|
|
|
});
|
|
});
|
|
@@ -515,7 +514,7 @@ export default {
|
|
|
// 跳转页面并接收参数(职位关键词)
|
|
// 跳转页面并接收参数(职位关键词)
|
|
|
goJobSkill() {
|
|
goJobSkill() {
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
- url: "/package/jobIntention/jobSkills",
|
|
|
|
|
|
|
+ url: "/package/jobIntention/jobSkills?tag="+this.positionTag,
|
|
|
events: {
|
|
events: {
|
|
|
skillsUpdated: (data) => {
|
|
skillsUpdated: (data) => {
|
|
|
this.positionTag = data.selectedTags;
|
|
this.positionTag = data.selectedTags;
|
|
@@ -602,7 +601,7 @@ export default {
|
|
|
province: this.stationName.province,
|
|
province: this.stationName.province,
|
|
|
city: this.stationName.city,
|
|
city: this.stationName.city,
|
|
|
county: this.stationName.district,
|
|
county: this.stationName.district,
|
|
|
- companyId: (this.companyId === undefined || this.companyId === 'undefined') ? '' : this.companyId,
|
|
|
|
|
|
|
+ // companyId: (this.companyId === undefined || this.companyId === 'undefined') ? '' : this.companyId,
|
|
|
salaryTimes: this.salaryTimes
|
|
salaryTimes: this.salaryTimes
|
|
|
|
|
|
|
|
};
|
|
};
|