|
@@ -26,7 +26,7 @@
|
|
|
<u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
|
|
|
placeholder="请选择期望职位" border placeholderClass='input-style' suffixIcon="arrow-right"
|
|
|
suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
|
|
|
- v-model="job_intention.category_job_name"></u--input>
|
|
|
+ v-model="category_job_name"></u--input>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="body-input u-flex-col u-row-center">
|
|
@@ -44,7 +44,7 @@
|
|
|
<u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
|
|
|
placeholder="请选择您的期望行业" border placeholderClass='input-style' suffixIcon="arrow-right"
|
|
|
suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
|
|
|
- v-model="job_intention.category_industry_name"></u--input>
|
|
|
+ v-model="job_intention_name"></u--input>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="body-input u-flex-col u-row-center">
|
|
@@ -84,6 +84,8 @@
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ category_industry_name: "", //行业
|
|
|
+ category_job_name: "", //职位
|
|
|
cityShow: false,
|
|
|
province: [], //省数据
|
|
|
city: [], //市数据
|
|
@@ -117,12 +119,7 @@
|
|
|
category_job_id: "", //职位分类三级ID
|
|
|
category_industry_first: "", //行业一级ID
|
|
|
category_industry_id: "", //行业二级ID
|
|
|
-
|
|
|
-
|
|
|
- // category_industry_name: "", //行业名称
|
|
|
- // category_job_name: "", //职业名称
|
|
|
},
|
|
|
-
|
|
|
xinzilist: [{
|
|
|
name: '5K以下',
|
|
|
min: 0,
|
|
@@ -175,6 +172,12 @@
|
|
|
if (uni.getStorageSync("job_intention1")) {
|
|
|
this.job_intention = uni.getStorageSync("job_intention1")
|
|
|
}
|
|
|
+ if (uni.getStorageSync("category_industry_name")) {
|
|
|
+ this.category_industry_name = uni.getStorageSync("job_intention1")
|
|
|
+ }
|
|
|
+ if (uni.getStorageSync("category_job_name")) {
|
|
|
+ this.category_job_name = uni.getStorageSync("category_job_name")
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
//户口地址
|
|
@@ -304,10 +307,10 @@
|
|
|
url: "/pagesA/change-zhiwei",
|
|
|
events: {
|
|
|
changefenlei: (res) => {
|
|
|
- this.job_intention.category_job_first = res[0].id, //职位分类一级ID
|
|
|
- this.job_intention.category_job_second = res[1].id, //职位分类二级ID
|
|
|
- this.job_intention.category_job_id = res[2].id //职位分类三级ID
|
|
|
- this.job_intention.category_job_name = res[2].name //职位名称
|
|
|
+ this.job_intention.category_job_first = res[0].id //职位分类一级ID
|
|
|
+ this.job_intention.category_job_second = res[1].id //职位分类二级ID
|
|
|
+ this.job_intention.category_job_id = res[2].id //职位分类三级ID
|
|
|
+ this.category_job_name = res[2].name //职位名称
|
|
|
}
|
|
|
}
|
|
|
})
|
|
@@ -321,7 +324,7 @@
|
|
|
console.log(res[1].name);
|
|
|
this.job_intention.category_industry_first = res[0].id //行业一级ID
|
|
|
this.job_intention.category_industry_id = res[1].id //行业二级ID
|
|
|
- this.job_intention.category_industry_name = res[1].name //行业名称
|
|
|
+ this.category_industry_name = res[1].name //行业名称
|
|
|
}
|
|
|
}
|
|
|
})
|
|
@@ -339,8 +342,8 @@
|
|
|
...this.from,
|
|
|
job_experience: [this.job_experience],
|
|
|
project_experience: [this.project_experience],
|
|
|
- education_experience:[this.education_experience],
|
|
|
- // job_intention: [this.job_intention]
|
|
|
+ education_experience: [this.education_experience],
|
|
|
+ job_intention: [this.job_intention]
|
|
|
}).then(res => {
|
|
|
if (res.code == 1) {
|
|
|
this.$u.toast(res.msg)
|
|
@@ -349,8 +352,8 @@
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
- uni.setStorageSync("category_industry_name", this.job_intention.category_industry_name)
|
|
|
- uni.setStorageSync("category_industry_id", this.job_intention.category_industry_id)
|
|
|
+ uni.setStorageSync("category_industry_name", this.category_industry_name)
|
|
|
+ uni.setStorageSync("category_job_name", this.category_job_name)
|
|
|
}
|
|
|
}
|
|
|
}
|