|
@@ -72,6 +72,13 @@
|
|
<text style="color: rgba(26, 28, 36, 0.8);font-size: 30rpx;">薪资</text>
|
|
<text style="color: rgba(26, 28, 36, 0.8);font-size: 30rpx;">薪资</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="body-input u-flex-col u-row-center" @click="show1 = true">
|
|
|
|
+ <text class="input-title">所属领域</text>
|
|
|
|
+ <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="category_name"></u--input>
|
|
|
|
+ </view>
|
|
<view class="body-input u-flex-col u-row-center">
|
|
<view class="body-input u-flex-col u-row-center">
|
|
<text class="input-title">优势亮点(选填)</text>
|
|
<text class="input-title">优势亮点(选填)</text>
|
|
<u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写" border
|
|
<u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写" border
|
|
@@ -91,6 +98,8 @@
|
|
@cancel="show = false"></u-picker> -->
|
|
@cancel="show = false"></u-picker> -->
|
|
<u-picker title="薪资类型" keyName="name" :show="salarytype" @confirm="salarytypefunction" :columns="salarytypelist"
|
|
<u-picker title="薪资类型" keyName="name" :show="salarytype" @confirm="salarytypefunction" :columns="salarytypelist"
|
|
@cancel='salarytype = false'></u-picker>
|
|
@cancel='salarytype = false'></u-picker>
|
|
|
|
+ <u-picker ref="uPicker1" keyName="name" title="所属领域" :defaultIndex="indexs" :show="show1"
|
|
|
|
+ :columns="category_list" @confirm="category1" @cancel="show1 = false" @change="changecategory"></u-picker>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -98,7 +107,8 @@
|
|
import {
|
|
import {
|
|
getAllArea,
|
|
getAllArea,
|
|
create,
|
|
create,
|
|
- profile
|
|
|
|
|
|
+ profile,
|
|
|
|
+ get_category_field
|
|
} from "@/units/inquire.js"
|
|
} from "@/units/inquire.js"
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
@@ -113,6 +123,7 @@
|
|
}]
|
|
}]
|
|
],
|
|
],
|
|
salarytype: false,
|
|
salarytype: false,
|
|
|
|
+ category_list: [],
|
|
category_industry_name: "", //行业
|
|
category_industry_name: "", //行业
|
|
category_job_name: "", //职位
|
|
category_job_name: "", //职位
|
|
cityShow: false,
|
|
cityShow: false,
|
|
@@ -128,6 +139,8 @@
|
|
project_experience: {},
|
|
project_experience: {},
|
|
education_experience: {},
|
|
education_experience: {},
|
|
salary_type: '月薪',
|
|
salary_type: '月薪',
|
|
|
|
+ category_name: '',
|
|
|
|
+ show1: '',
|
|
addressData: {
|
|
addressData: {
|
|
id: "",
|
|
id: "",
|
|
province: "",
|
|
province: "",
|
|
@@ -151,6 +164,8 @@
|
|
category_job_id: "", //职位分类三级ID
|
|
category_job_id: "", //职位分类三级ID
|
|
category_industry_first: "", //行业一级ID
|
|
category_industry_first: "", //行业一级ID
|
|
category_industry_id: "", //行业二级ID
|
|
category_industry_id: "", //行业二级ID
|
|
|
|
+ category_field_id: '',
|
|
|
|
+ category_field_first: ''
|
|
},
|
|
},
|
|
xinzilist: [
|
|
xinzilist: [
|
|
|
|
|
|
@@ -160,6 +175,7 @@
|
|
onLoad() {
|
|
onLoad() {
|
|
this.AllArea()
|
|
this.AllArea()
|
|
this.xinzi()
|
|
this.xinzi()
|
|
|
|
+ this.get_category_field()
|
|
if (uni.getStorageSync("from")) {
|
|
if (uni.getStorageSync("from")) {
|
|
console.log(uni.getStorageSync("from"));
|
|
console.log(uni.getStorageSync("from"));
|
|
this.from = uni.getStorageSync("from")
|
|
this.from = uni.getStorageSync("from")
|
|
@@ -208,6 +224,104 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ category1(e) {
|
|
|
|
+ let a = ''
|
|
|
|
+ if (e.value[1]) {
|
|
|
|
+ a = e.value[0].name + e.value[1].name
|
|
|
|
+ } else {
|
|
|
|
+ a = e.value[0].name
|
|
|
|
+ }
|
|
|
|
+ if (e.value[1]) {
|
|
|
|
+ this.job_intention.category_field_id = e.value[1].id
|
|
|
|
+ this.job_intention.category_field_first = e.value[0].id
|
|
|
|
+ } else {
|
|
|
|
+ this.job_intention.category_field_first = e.value[0].id
|
|
|
|
+ }
|
|
|
|
+ // let ids = String(e.value[0].id) + String(e.value[1].id)
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ this.category_name = a
|
|
|
|
+ this.show1 = false
|
|
|
|
+ // this.city1 = e.value.join("")
|
|
|
|
+ },
|
|
|
|
+ changecategory(e) {
|
|
|
|
+ const {
|
|
|
|
+ columnIndex, //当前改变值的列下标
|
|
|
|
+ value,
|
|
|
|
+ values, // values为当前变化列的数组内容
|
|
|
|
+ indexs, //当前地区值下标
|
|
|
|
+ picker = this.$refs.uPicker1
|
|
|
|
+ } = e
|
|
|
|
+ //columnIndex代表第几列,意思是下标为0的列发生变化
|
|
|
|
+
|
|
|
|
+ if (columnIndex === 0) {
|
|
|
|
+ if (this.category_two[indexs[0]]) {
|
|
|
|
+ picker.setColumnValues(1, this.category_two[indexs[0]].map(v => {
|
|
|
|
+ return {
|
|
|
|
+ name: v.name,
|
|
|
|
+ id: v.id
|
|
|
|
+ }
|
|
|
|
+ }))
|
|
|
|
+ } else {
|
|
|
|
+ value = ""
|
|
|
|
+ }
|
|
|
|
+ // picker.setColumnValues(2, this.area[indexs[0]][0].map(v => {
|
|
|
|
+ // return {
|
|
|
|
+ // name: v.name,
|
|
|
|
+ // id: v.id
|
|
|
|
+ // }
|
|
|
|
+ // }))
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ get_category_field() {
|
|
|
|
+ get_category_field().then(res => {
|
|
|
|
+ res.data.forEach(item => {
|
|
|
|
+ if (item.childlist) {
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ item.childlist = []
|
|
|
|
+ res.data.push(item)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ this.category_field_first = res.data.map(t => {
|
|
|
|
+ return {
|
|
|
|
+ name: t.name,
|
|
|
|
+ id: t.id
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ console.log("aaa", this.category_field_first);
|
|
|
|
+ this.category_two = res.data.map(t => {
|
|
|
|
+ if (t.childlist) {
|
|
|
|
+ var c = []
|
|
|
|
+ c = t.childlist.map(v => {
|
|
|
|
+ console.log(v);
|
|
|
|
+ return {
|
|
|
|
+ name: v.name,
|
|
|
|
+ id: v.id
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ return c
|
|
|
|
+ })
|
|
|
|
+ console.log('category_two', this.category_two);
|
|
|
|
+ let a = []
|
|
|
|
+ let b = []
|
|
|
|
+ this.category_field_first.map(res => {
|
|
|
|
+ a.push({
|
|
|
|
+ name: res.name,
|
|
|
|
+ id: res.id,
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ this.category_two[0].map(res => {
|
|
|
|
+ b.push({
|
|
|
|
+ name: res.name,
|
|
|
|
+ id: res.id,
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ this.category_list = [a, b]
|
|
|
|
+ })
|
|
|
|
+ },
|
|
salarytypefunction(e) {
|
|
salarytypefunction(e) {
|
|
this.job_intention.salary_type = e.value[0].salary_type
|
|
this.job_intention.salary_type = e.value[0].salary_type
|
|
this.salary_type = e.value[0].name
|
|
this.salary_type = e.value[0].name
|
|
@@ -388,7 +502,7 @@
|
|
if (uni.getStorageSync('radiovalue1') == 1) {
|
|
if (uni.getStorageSync('radiovalue1') == 1) {
|
|
create({
|
|
create({
|
|
...this.from,
|
|
...this.from,
|
|
- job_experience: this.job_experience,
|
|
|
|
|
|
+ job_experience: [this.job_experience],
|
|
project_experience: [this.project_experience],
|
|
project_experience: [this.project_experience],
|
|
education_experience: [this.education_experience],
|
|
education_experience: [this.education_experience],
|
|
job_intention: [this.job_intention]
|
|
job_intention: [this.job_intention]
|