suqiu.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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" @click="showheight=true">
  13. <text class="text1" style="flex: 1;">身高</text>
  14. <view class=" u-flex">
  15. <input type="text" :disabled="true" placeholder="" v-model="getheight" style="text-align: right;">
  16. <!-- <text class="text_50">cm</text> -->
  17. <!-- {{info.height}}cm -->
  18. <u-icon name="arrow-right"></u-icon>
  19. </view>
  20. </view>
  21. <!-- <view class="item-box u-flex u-col-center u-row-between">
  22. <text class="text1" style="flex: 1;">体重</text>
  23. <view class=" u-flex">
  24. <input type="text" v-model='info.weight' style="text-align: right;">
  25. <text class="text_50">kg</text>
  26. </view>
  27. </view> -->
  28. <view class="item-box u-flex u-col-center u-row-between" @click="showEducation=true">
  29. <text class="text1" style="flex: 1;">学历</text>
  30. <view class=" u-flex" >
  31. <text class="text_50">{{info.education}}</text>
  32. <u-icon name="arrow-right"></u-icon>
  33. </view>
  34. </view>
  35. <view class="item-box u-flex u-col-center u-row-between" @click="showIncome=true">
  36. <text class="text1" style="flex: 1;">月收入</text>
  37. <view class=" u-flex" >
  38. <text class="text_50">{{info.income}}</text>
  39. <u-icon name="arrow-right"></u-icon>
  40. </view>
  41. </view>
  42. <view class="item-box u-flex u-col-center u-row-between">
  43. <text class="text1" style="flex: 1;">工作地区</text>
  44. <view class=" u-flex">
  45. <AddressPicker @change="change" :level="3">{{info.address}} </AddressPicker>
  46. <u-icon name="arrow-right"></u-icon>
  47. </view>
  48. </view>
  49. <view class="publish" @click="storage">
  50. 保存
  51. </view>
  52. <u-picker :show="showIncome" :immediateChange='true' @cancel='showIncome=false' title="收入" ref="uPicker" :columns="incomecolumns" @confirm="confirmIncome">
  53. </u-picker>
  54. <u-picker :show="showEducation" :immediateChange='true' @cancel='showEducation=false' title="学历" ref="uPicker" :columns="educationcolumns" @confirm="confirmEducation">
  55. </u-picker>
  56. <u-picker :show="showage" :immediateChange='true' @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm" @change="changeHandler">
  57. </u-picker>
  58. <u-picker :immediateChange='true' :show="showheight" @cancel='showheight=false' title="身高" ref="uPicker" :columns="heightcolumns"
  59. @confirm="heightconfirm">
  60. </u-picker>
  61. </view>
  62. </template>
  63. <script>
  64. import AddressPicker from "@/components/lingdang-AddressPicker/AddressPicker.vue"
  65. export default {
  66. components: {
  67. AddressPicker
  68. },
  69. onLoad() {
  70. this.getInfo()
  71. var list=this.columns[0]
  72. var list1=this.columns[1]
  73. for( let i=1;i<66;i++){
  74. if(list[list.length-1]<65){
  75. list.push(list[0]+i)
  76. list1.push(list1[0]+i)
  77. }
  78. }
  79. for (let i = 150; i < 200; i++) {
  80. this.heightcolumns[0].push(i + 'cm')
  81. this.heightcolumns[1].push(i + 'cm')
  82. }
  83. },
  84. computed:{
  85. getheight(){
  86. console.log(this.info)
  87. if(this.info.height_min){
  88. return (this.info.height_min+'-'+this.info.height_max)
  89. }else{
  90. return '请选择身高'
  91. }
  92. }
  93. },
  94. data() {
  95. return {
  96. heightcolumns: [
  97. ['不限'],
  98. ['不限']
  99. ],
  100. showheight: false,
  101. incomeIndex:'',
  102. showage:false,
  103. info:{
  104. },
  105. showEducation:false,
  106. showIncome:false,
  107. incomecolumns:[['3000-6000','6000-10000','1万以上','不限']],
  108. educationcolumns:[['高中','大专','本科','硕士','博士','不限']],
  109. columns: [
  110. [18],
  111. [18]
  112. ],
  113. }
  114. },
  115. methods: {
  116. heightconfirm(e) {
  117. this.$set(this.info,'height_min',e.value[0])
  118. this.$set(this.info,'height_max',e.value[1])
  119. // this.info.height_min = e.value[0]
  120. // this.info.height_max = e.value[1]
  121. this.showheight = false
  122. },
  123. storage(){
  124. var data={
  125. age_min:this.info.age_min,
  126. age_max:this.info.age_max,
  127. height_min:this.info.height_min,
  128. height_max:this.info.height_max,
  129. weight:this.info.weight,
  130. income:this.incomeIndex,
  131. province_id:this.info.province_id,
  132. city_id:this.info.city_id,
  133. area_id:this.info.area_id,
  134. education:this.info.education
  135. }
  136. uni.$u.http.post('/api/user/appeals',data).then(res => {
  137. if(res.code==1){
  138. this.$u.toast(res.msg)
  139. }
  140. })
  141. },
  142. confirm(e) {
  143. this.info.age_min=e.value[0]
  144. this.info.age_max=e.value[1]
  145. this.showage = false
  146. },
  147. changeHandler(e) {
  148. const {
  149. columnIndex,
  150. value,
  151. values, // values为当前变化列的数组内容
  152. index,
  153. // 微信小程序无法将picker实例传出来,只能通过ref操作
  154. picker = this.$refs.uPicker
  155. } = e
  156. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  157. if (columnIndex === 0) {
  158. this.columns[1]=[...this.columns[0]]
  159. // picker为选择器this实例,变化第二列对应的选项
  160. // picker.setColumnValues(1, this.columnData[index])
  161. this.columns[1].splice(0,index)
  162. this.$set(this.columns,1,this.columns[1])
  163. }
  164. },
  165. change(result) {
  166. this.info.province_id=result.data[0].id
  167. this.info.city_id=result.data[1].id
  168. this.info.area_id=result.data[2].id
  169. this.info.address = '';
  170. result.data.forEach((item, index) => {
  171. if (index === 0) {
  172. this.info.address += item.name
  173. } else {
  174. this.info.address += '-' + item.name
  175. }
  176. });
  177. let arr = this.info.address.split('-');
  178. },
  179. confirmEducation(e){
  180. this.info.education=e.value[0]
  181. this.showEducation=false
  182. },
  183. confirmIncome(e){
  184. console.log(121,e)
  185. this.info.income=e.value[0]
  186. this.incomeIndex=e.indexs[0]+1
  187. this.showIncome=false
  188. },
  189. getInfo(){
  190. uni.$u.http.post('/api/user/show_appeals').then(res => {
  191. if(res.code==1){
  192. this.info=res.data
  193. if(this.info.income){
  194. if(this.info.income[0]=='3000'){
  195. this.info.income='3000-6000'
  196. this.incomeIndex=1
  197. }
  198. if(this.info.income[0]=='6000'){
  199. this.info.income='6000-10000'
  200. this.incomeIndex=2
  201. }
  202. if(this.info.income[0]=='10000'){
  203. this.info.income='1万以上'
  204. this.incomeIndex=3
  205. }
  206. if(this.info.income[0]=='不限'){
  207. this.info.income='不限'
  208. this.incomeIndex=4
  209. }
  210. }
  211. }
  212. })
  213. }
  214. }
  215. }
  216. </script>
  217. <style lang="scss">
  218. page{
  219. padding: 30rpx 0;
  220. }
  221. .publish{
  222. position: fixed;
  223. bottom: 84rpx;
  224. left: 50rpx;
  225. right: 50rpx;
  226. margin: 0 auto;
  227. width: 650rpx;
  228. height: 104rpx;
  229. line-height: 104rpx;
  230. text-align: center;
  231. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  232. border-radius: 52rpx;
  233. font-size: 36rpx;
  234. color: #fff;
  235. }
  236. .item-box {
  237. background-color: #fff;
  238. padding: 30rpx 36rpx;
  239. .text1 {
  240. white-space: nowrap;
  241. font-size: 28rpx;
  242. font-family: SF Pro;
  243. font-weight: 500;
  244. color: #333333;
  245. }
  246. image {
  247. width: 116rpx;
  248. height: 116rpx;
  249. border-radius: 100rpx;
  250. }
  251. input {
  252. flex: 1;
  253. text-align: right;
  254. }
  255. }
  256. .title{
  257. margin-left: 36rpx;
  258. font-size: 30rpx;
  259. color: #222222;
  260. font-weight: 600;
  261. }
  262. </style>