suqiu.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view>
  3. <view class="title">
  4. 基本条件
  5. </view>
  6. <view class="item-box u-flex u-col-center u-row-between">
  7. <text class="text1" style="flex: 1;">年龄</text>
  8. <view class=" u-flex" @click="showage=true">
  9. {{info.age_min?info.age_min+'-':'请选择年龄'}}{{info.age_max?info.age_max:''}}<u-icon name="arrow-right"></u-icon>
  10. </view>
  11. </view>
  12. <view class="item-box u-flex u-col-center u-row-between">
  13. <text class="text1" style="flex: 1;">身高</text>
  14. <view class=" u-flex">
  15. <input type="text" v-model='info.height' style="text-align: right;">
  16. <text class="text_50">cm</text>
  17. <!-- {{info.height}}cm<u-icon name="arrow-right"></u-icon> -->
  18. </view>
  19. </view>
  20. <view class="item-box u-flex u-col-center u-row-between">
  21. <text class="text1" style="flex: 1;">体重</text>
  22. <view class=" u-flex">
  23. <input type="text" v-model='info.weight' style="text-align: right;">
  24. <text class="text_50">kg</text>
  25. </view>
  26. </view>
  27. <view class="item-box u-flex u-col-center u-row-between">
  28. <text class="text1" style="flex: 1;">学历</text>
  29. <view class=" u-flex" @click="showEducation=true">
  30. <text class="text_50">{{info.education}}</text>
  31. <u-icon name="arrow-right"></u-icon>
  32. </view>
  33. </view>
  34. <view class="item-box u-flex u-col-center u-row-between">
  35. <text class="text1" style="flex: 1;">月收入</text>
  36. <view class=" u-flex">
  37. <input type="text" v-model='info.income' style="text-align: right;">
  38. </view>
  39. </view>
  40. <view class="item-box u-flex u-col-center u-row-between">
  41. <text class="text1" style="flex: 1;">工作地区</text>
  42. <view class=" u-flex">
  43. <AddressPicker @change="change" :level="3">{{info.address}} </AddressPicker>
  44. <u-icon name="arrow-right"></u-icon>
  45. </view>
  46. </view>
  47. <view class="publish" @click="storage">
  48. 保存
  49. </view>
  50. <u-picker :show="showEducation" @cancel='showEducation=false' title="学历" ref="uPicker" :columns="educationcolumns" @confirm="confirmEducation">
  51. </u-picker>
  52. <u-picker :show="showage" @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm" @change="changeHandler">
  53. </u-picker>
  54. </view>
  55. </template>
  56. <script>
  57. import AddressPicker from "@/components/lingdang-AddressPicker/AddressPicker.vue"
  58. export default {
  59. components: {
  60. AddressPicker
  61. },
  62. onLoad() {
  63. this.getInfo()
  64. var list=this.columns[0]
  65. var list1=this.columns[1]
  66. for( let i=1;i<66;i++){
  67. if(list[list.length-1]<65){
  68. list.push(list[0]+i)
  69. list1.push(list1[0]+i)
  70. }
  71. }
  72. },
  73. data() {
  74. return {
  75. showage:false,
  76. info:{},
  77. showEducation:false,
  78. educationcolumns:[['高中','大专','本科','硕士','博士']],
  79. columns: [
  80. [18],
  81. [18]
  82. ],
  83. }
  84. },
  85. methods: {
  86. storage(){
  87. var data={
  88. age_min:this.info.age_min,
  89. age_max:this.info.age_max,
  90. height:this.info.height,
  91. weight:this.info.weight,
  92. income:this.info.income,
  93. province_id:this.info.province_id,
  94. city_id:this.info.city_id,
  95. area_id:this.info.area_id,
  96. education:this.info.education
  97. }
  98. uni.$u.http.post('/api/user/appeals',data).then(res => {
  99. if(res.code==1){
  100. this.$u.toast(res.msg)
  101. }
  102. })
  103. },
  104. confirm(e) {
  105. this.info.age_min=e.value[0]
  106. this.info.age_max=e.value[1]
  107. this.showage = false
  108. },
  109. changeHandler(e) {
  110. const {
  111. columnIndex,
  112. value,
  113. values, // values为当前变化列的数组内容
  114. index,
  115. // 微信小程序无法将picker实例传出来,只能通过ref操作
  116. picker = this.$refs.uPicker
  117. } = e
  118. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  119. if (columnIndex === 0) {
  120. this.columns[1]=[...this.columns[0]]
  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. }
  126. },
  127. change(result) {
  128. this.info.province_id=result.data[0].id
  129. this.info.city_id=result.data[1].id
  130. this.info.area_id=result.data[2].id
  131. this.info.address = '';
  132. result.data.forEach((item, index) => {
  133. if (index === 0) {
  134. this.info.address += item.name
  135. } else {
  136. this.info.address += '-' + item.name
  137. }
  138. });
  139. let arr = this.info.address.split('-');
  140. },
  141. confirmEducation(e){
  142. this.info.education=e.value[0]
  143. this.showEducation=false
  144. },
  145. getInfo(){
  146. uni.$u.http.post('/api/user/show_appeals').then(res => {
  147. if(res.code==1){
  148. this.info=res.data
  149. }
  150. })
  151. }
  152. }
  153. }
  154. </script>
  155. <style lang="scss">
  156. .publish{
  157. position: fixed;
  158. bottom: 84rpx;
  159. left: 50rpx;
  160. right: 50rpx;
  161. margin: 0 auto;
  162. width: 650rpx;
  163. height: 104rpx;
  164. line-height: 104rpx;
  165. text-align: center;
  166. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  167. border-radius: 52rpx;
  168. font-size: 36rpx;
  169. color: #fff;
  170. }
  171. .item-box {
  172. background-color: #fff;
  173. padding: 30rpx 36rpx;
  174. .text1 {
  175. white-space: nowrap;
  176. font-size: 28rpx;
  177. font-family: SF Pro;
  178. font-weight: 500;
  179. color: #333333;
  180. }
  181. image {
  182. width: 116rpx;
  183. height: 116rpx;
  184. border-radius: 100rpx;
  185. }
  186. input {
  187. flex: 1;
  188. text-align: right;
  189. }
  190. }
  191. .title{
  192. font-size: 30rpx;
  193. color: #222222;
  194. font-weight: 600;
  195. }
  196. </style>