|
@@ -9,33 +9,35 @@
|
|
|
{{info.age_min?info.age_min+'-':'请选择年龄'}}{{info.age_max?info.age_max:''}}<u-icon name="arrow-right"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="item-box u-flex u-col-center u-row-between">
|
|
|
+ <view class="item-box u-flex u-col-center u-row-between" @click="showheight=true">
|
|
|
<text class="text1" style="flex: 1;">身高</text>
|
|
|
<view class=" u-flex">
|
|
|
- <input type="text" v-model='info.height' style="text-align: right;">
|
|
|
- <text class="text_50">cm</text>
|
|
|
- <!-- {{info.height}}cm<u-icon name="arrow-right"></u-icon> -->
|
|
|
+ <input type="text" :disabled="true" placeholder="" v-model="getheight" style="text-align: right;">
|
|
|
+ <!-- <text class="text_50">cm</text> -->
|
|
|
+ <!-- {{info.height}}cm -->
|
|
|
+ <u-icon name="arrow-right"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="item-box u-flex u-col-center u-row-between">
|
|
|
+ <!-- <view class="item-box u-flex u-col-center u-row-between">
|
|
|
<text class="text1" style="flex: 1;">体重</text>
|
|
|
<view class=" u-flex">
|
|
|
<input type="text" v-model='info.weight' style="text-align: right;">
|
|
|
<text class="text_50">kg</text>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <view class="item-box u-flex u-col-center u-row-between">
|
|
|
+ </view> -->
|
|
|
+ <view class="item-box u-flex u-col-center u-row-between" @click="showEducation=true">
|
|
|
<text class="text1" style="flex: 1;">学历</text>
|
|
|
- <view class=" u-flex" @click="showEducation=true">
|
|
|
+ <view class=" u-flex" >
|
|
|
<text class="text_50">{{info.education}}</text>
|
|
|
<u-icon name="arrow-right"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="item-box u-flex u-col-center u-row-between">
|
|
|
+ <view class="item-box u-flex u-col-center u-row-between" @click="showIncome=true">
|
|
|
<text class="text1" style="flex: 1;">月收入</text>
|
|
|
- <view class=" u-flex">
|
|
|
- <input type="text" v-model='info.income' style="text-align: right;">
|
|
|
- </view>
|
|
|
+ <view class=" u-flex" >
|
|
|
+ <text class="text_50">{{info.income}}</text>
|
|
|
+ <u-icon name="arrow-right"></u-icon>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="item-box u-flex u-col-center u-row-between">
|
|
|
<text class="text1" style="flex: 1;">工作地区</text>
|
|
@@ -48,9 +50,14 @@
|
|
|
<view class="publish" @click="storage">
|
|
|
保存
|
|
|
</view>
|
|
|
- <u-picker :show="showEducation" @cancel='showEducation=false' title="学历" ref="uPicker" :columns="educationcolumns" @confirm="confirmEducation">
|
|
|
+ <u-picker :show="showIncome" :immediateChange='true' @cancel='showIncome=false' title="收入" ref="uPicker" :columns="incomecolumns" @confirm="confirmIncome">
|
|
|
</u-picker>
|
|
|
- <u-picker :show="showage" @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm" @change="changeHandler">
|
|
|
+ <u-picker :show="showEducation" :immediateChange='true' @cancel='showEducation=false' title="学历" ref="uPicker" :columns="educationcolumns" @confirm="confirmEducation">
|
|
|
+ </u-picker>
|
|
|
+ <u-picker :show="showage" :immediateChange='true' @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm" @change="changeHandler">
|
|
|
+ </u-picker>
|
|
|
+ <u-picker :immediateChange='true' :show="showheight" @cancel='showheight=false' title="身高" ref="uPicker" :columns="heightcolumns"
|
|
|
+ @confirm="heightconfirm">
|
|
|
</u-picker>
|
|
|
</view>
|
|
|
</template>
|
|
@@ -71,13 +78,36 @@
|
|
|
list1.push(list1[0]+i)
|
|
|
}
|
|
|
}
|
|
|
+ for (let i = 150; i < 200; i++) {
|
|
|
+ this.heightcolumns[0].push(i + 'cm')
|
|
|
+ this.heightcolumns[1].push(i + 'cm')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed:{
|
|
|
+ getheight(){
|
|
|
+ console.log(this.info)
|
|
|
+ if(this.info.height_min){
|
|
|
+ return (this.info.height_min+'-'+this.info.height_max)
|
|
|
+ }else{
|
|
|
+ return '请选择身高'
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ heightcolumns: [
|
|
|
+ ['不限'],
|
|
|
+ ['不限']
|
|
|
+ ],
|
|
|
+ showheight: false,
|
|
|
+ incomeIndex:'',
|
|
|
showage:false,
|
|
|
- info:{},
|
|
|
+ info:{
|
|
|
+ },
|
|
|
showEducation:false,
|
|
|
- educationcolumns:[['高中','大专','本科','硕士','博士']],
|
|
|
+ showIncome:false,
|
|
|
+ incomecolumns:[['3000-6000','6000-10000','1万以上','不限']],
|
|
|
+ educationcolumns:[['高中','大专','本科','硕士','博士','不限']],
|
|
|
columns: [
|
|
|
[18],
|
|
|
[18]
|
|
@@ -85,13 +115,21 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ heightconfirm(e) {
|
|
|
+ this.$set(this.info,'height_min',e.value[0])
|
|
|
+ this.$set(this.info,'height_max',e.value[1])
|
|
|
+ // this.info.height_min = e.value[0]
|
|
|
+ // this.info.height_max = e.value[1]
|
|
|
+ this.showheight = false
|
|
|
+ },
|
|
|
storage(){
|
|
|
var data={
|
|
|
age_min:this.info.age_min,
|
|
|
age_max:this.info.age_max,
|
|
|
- height:this.info.height,
|
|
|
+ height_min:this.info.height_min,
|
|
|
+ height_max:this.info.height_max,
|
|
|
weight:this.info.weight,
|
|
|
- income:this.info.income,
|
|
|
+ income:this.incomeIndex,
|
|
|
province_id:this.info.province_id,
|
|
|
city_id:this.info.city_id,
|
|
|
area_id:this.info.area_id,
|
|
@@ -147,10 +185,35 @@
|
|
|
this.info.education=e.value[0]
|
|
|
this.showEducation=false
|
|
|
},
|
|
|
+ confirmIncome(e){
|
|
|
+ console.log(121,e)
|
|
|
+ this.info.income=e.value[0]
|
|
|
+ this.incomeIndex=e.indexs[0]+1
|
|
|
+ this.showIncome=false
|
|
|
+ },
|
|
|
getInfo(){
|
|
|
uni.$u.http.post('/api/user/show_appeals').then(res => {
|
|
|
if(res.code==1){
|
|
|
this.info=res.data
|
|
|
+ if(this.info.income){
|
|
|
+ if(this.info.income[0]=='3000'){
|
|
|
+ this.info.income='3000-6000'
|
|
|
+ this.incomeIndex=1
|
|
|
+ }
|
|
|
+ if(this.info.income[0]=='6000'){
|
|
|
+ this.info.income='6000-10000'
|
|
|
+ this.incomeIndex=2
|
|
|
+ }
|
|
|
+ if(this.info.income[0]=='10000'){
|
|
|
+ this.info.income='1万以上'
|
|
|
+ this.incomeIndex=3
|
|
|
+ }
|
|
|
+ if(this.info.income[0]=='不限'){
|
|
|
+ this.info.income='不限'
|
|
|
+ this.incomeIndex=4
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
})
|
|
|
}
|