pipei.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <view>
  3. <view class="">
  4. <view class="" style="font-size: 32rpx;">
  5. 年龄
  6. </view>
  7. <view class="u-flex" style="width: 630rpx;
  8. height: 120rpx;
  9. background: #F1F1F1;
  10. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showage=true">
  11. <input type="text" :disabled="true" placeholder="你期望他的年龄" style="flex: 1;" v-model="age[0]+'-'+age[1]">
  12. <u-icon name="arrow-down"></u-icon>
  13. </view>
  14. <view class="" style="font-size: 32rpx;">
  15. 学历
  16. </view>
  17. <view class="u-flex" style="width: 630rpx;
  18. height: 120rpx;
  19. background: #F1F1F1;
  20. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showEducation=true">
  21. <input type="text" :disabled="true" placeholder="你期望他的学历" style="flex: 1;" v-model="education">
  22. <u-icon name="arrow-down"></u-icon>
  23. </view>
  24. <view class="" style="font-size: 32rpx;">
  25. 工作性质
  26. </view>
  27. <view class="u-flex" style="width: 630rpx;
  28. height: 120rpx;
  29. background: #F1F1F1;
  30. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showwork=true">
  31. <input type="text" :disabled="true" placeholder="你期望他的工作性质" style="flex: 1;" v-model="work.name">
  32. <u-icon name="arrow-down"></u-icon>
  33. </view>
  34. <image src="../../static/index/start.png" mode=""
  35. style="position: fixed;bottom: 184rpx;left: 50%;transform: translateX(-50%);width: 296rpx;height: 296rpx;" @click="start">
  36. </image>
  37. </view>
  38. <u-picker :show="showage" @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm" @change="changeHandler">
  39. </u-picker>
  40. <u-picker :show="showEducation" @cancel='showEducation=false' title="学历" ref="uPicker" :columns="columns2" @confirm="confirmEducation">
  41. </u-picker>
  42. <u-picker :show="showwork" @cancel='showwork=false' title="工作性质" @confirm='confirmWork' keyName="name" :columns="columns1"></u-picker>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. onLoad() {
  48. this.getWork()
  49. var list=this.columns[0]
  50. var list1=this.columns[1]
  51. for( let i=1;i<66;i++){
  52. if(list[list.length-1]<65){
  53. list.push(list[0]+i)
  54. list1.push(list1[0]+i)
  55. }
  56. }
  57. },
  58. data() {
  59. return {
  60. work:{},
  61. age:[18,36],
  62. showEducation:false,
  63. showage: false,
  64. showwork:false,
  65. education:'',
  66. columns1:[],
  67. columns: [
  68. [18],
  69. [18]
  70. ],
  71. columns2:[['高中','大专','本科','硕士','博士']]
  72. }
  73. },
  74. methods: {
  75. confirmEducation(e){
  76. this.education=e.value[0]
  77. this.showEducation=false
  78. },
  79. confirmWork(e){
  80. this.work=e.value[0]
  81. this.showwork=false
  82. },
  83. getWork(){
  84. uni.$u.http.post('/api/index/WorkNature').then(res => {
  85. this.columns1=[res.data]
  86. })
  87. },
  88. start(){
  89. if(!this.education){
  90. this.$u.toast('请选择学历')
  91. return
  92. }
  93. if(Object.keys(this.work).length==0){
  94. this.$u.toast('请选择工作性质')
  95. return
  96. }
  97. var data={
  98. age_min:this.age[0],
  99. age_max:this.age[1],
  100. nature:this.work.id,
  101. education:this.education,
  102. }
  103. uni.navigateTo({
  104. url:'./pipeizhong?info='+JSON.stringify(data)
  105. })
  106. },
  107. changeHandler(e) {
  108. console.log(11,e)
  109. const {
  110. columnIndex,
  111. value,
  112. values, // values为当前变化列的数组内容
  113. index,
  114. // 微信小程序无法将picker实例传出来,只能通过ref操作
  115. picker = this.$refs.uPicker
  116. } = e
  117. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  118. if (columnIndex === 0) {
  119. this.columns[1]=[...this.columns[0]]
  120. console.log(123,this.columns[1])
  121. // picker为选择器this实例,变化第二列对应的选项
  122. // picker.setColumnValues(1, this.columnData[index])
  123. this.columns[1].splice(0,index)
  124. this.$set(this.columns,1,this.columns[1])
  125. console.log(456,this.columns[1])
  126. }
  127. },
  128. // 回调参数为包含columnIndex、value、values
  129. confirm(e) {
  130. this.age=e.value
  131. this.showage = false
  132. }
  133. }
  134. }
  135. </script>
  136. <style>
  137. page {
  138. padding: 40rpx 60rpx;
  139. }
  140. </style>