pipei.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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="你期望ta的年龄" style="flex: 1;"
  12. v-model="age.length==0?'':age[0]+'-'+age[1]">
  13. <u-icon name="arrow-down"></u-icon>
  14. </view>
  15. <view class="" style="font-size: 32rpx;">
  16. 学历
  17. </view>
  18. <view class="u-flex" style="width: 630rpx;
  19. height: 120rpx;
  20. background: #F1F1F1;
  21. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showEducation=true">
  22. <input type="text" :disabled="true" placeholder="你期望ta的学历" style="flex: 1;" v-model="education">
  23. <u-icon name="arrow-down"></u-icon>
  24. </view>
  25. <view class="" style="font-size: 32rpx;">
  26. 工作性质
  27. </view>
  28. <view class="u-flex" style="width: 630rpx;
  29. height: 120rpx;
  30. background: #F1F1F1;
  31. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showwork=true">
  32. <input type="text" :disabled="true" placeholder="你期望ta的工作性质" style="flex: 1;" v-model="work.name">
  33. <u-icon name="arrow-down"></u-icon>
  34. </view>
  35. <view class="" style="font-size: 32rpx;">
  36. 身高
  37. </view>
  38. <view class="u-flex" style="width: 630rpx;
  39. height: 120rpx;
  40. background: #F1F1F1;
  41. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showheight=true">
  42. <input type="text" :disabled="true" placeholder="你期望ta的身高范围" style="flex: 1;"
  43. v-model="height.length==0?'':height[0]+'-'+height[1]">
  44. <u-icon name="arrow-down"></u-icon>
  45. </view>
  46. <view class="" style="font-size: 32rpx;">
  47. 月收入
  48. </view>
  49. <view class="u-flex" style="width: 630rpx;
  50. height: 120rpx;
  51. background: #F1F1F1;
  52. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showmoney=true">
  53. <input type="text" :disabled="true" placeholder="你期望ta的月收入" style="flex: 1;"
  54. v-model="money">
  55. <u-icon name="arrow-down"></u-icon>
  56. </view>
  57. <view class="" style="font-size: 32rpx;">
  58. 现住地
  59. </view>
  60. <view class="u-flex" style="width: 630rpx;
  61. height: 120rpx;
  62. background: #F1F1F1;
  63. border-radius: 28rpx;margin: 24rpx 0;box-sizing: border-box;padding: 0 32rpx;" @click="showaddress=true">
  64. <input type="text" :disabled="true" placeholder="你期望ta的现住地" style="flex: 1;"
  65. v-model="address.length==0?'':address[0].name+'-'+address[1].name">
  66. <u-icon name="arrow-down"></u-icon>
  67. </view>
  68. <view class="publish select" @click="start">
  69. <!-- <image src="../../static/forum/publish.png" mode=""></image> -->
  70. 开始匹配
  71. </view>
  72. </view>
  73. <u-picker :immediateChange='true' :show="showage" @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm"
  74. @change="changeHandler">
  75. </u-picker>
  76. <u-picker :immediateChange='true' :show="showheight" @cancel='showheight=false' title="身高" ref="uPicker" :columns="heightcolumns"
  77. @confirm="heightconfirm">
  78. </u-picker>
  79. <u-picker :immediateChange='true' :show="showmoney" @cancel='showmoney=false' title="月收入" ref="uPicker" :columns="moneycolumns"
  80. @confirm="moneyconfirm">
  81. </u-picker>
  82. <u-picker :immediateChange='true' :show="showaddress" @cancel='showaddress=false' keyName="name" title="居住地" ref="uPicker"
  83. :columns="addresscolumns" @confirm="addressconfirm">
  84. </u-picker>
  85. <u-picker :immediateChange='true' :show="showEducation" @cancel='showEducation=false' title="学历" ref="uPicker" :columns="columns2"
  86. @confirm="confirmEducation">
  87. </u-picker>
  88. <u-picker :immediateChange='true' :show="showwork" @cancel='showwork=false' title="工作性质" @confirm='confirmWork' keyName="name"
  89. :columns="columns1"></u-picker>
  90. </view>
  91. </template>
  92. <script>
  93. export default {
  94. onLoad() {
  95. this.getAddress()
  96. this.getWork()
  97. var list = this.columns[0]
  98. var list1 = this.columns[1]
  99. for (let i = 1; i < 66; i++) {
  100. if (list[list.length - 1] < 65) {
  101. list.push(list[0] + i)
  102. list1.push(list1[0] + i)
  103. }
  104. }
  105. for (let i = 150; i < 200; i++) {
  106. this.heightcolumns[0].push(i + 'cm')
  107. this.heightcolumns[1].push(i + 'cm')
  108. }
  109. },
  110. data() {
  111. return {
  112. showaddress: false,
  113. showmoney: false,
  114. showheight: false,
  115. work: {},
  116. address: [],
  117. age: [],
  118. moneyIndex:'',
  119. money: [],
  120. height: [],
  121. showEducation: false,
  122. showage: false,
  123. showwork: false,
  124. education: '',
  125. columns1: [],
  126. columns: [
  127. [18],
  128. [18]
  129. ],
  130. heightcolumns: [
  131. ['不限'],
  132. ['不限']
  133. ],
  134. addresscolumns: [
  135. [{"id": 1,
  136. "name": "临沂市"}
  137. ],
  138. [{"id":1480,"name":"兰山区"},{"id":1481,"name":"罗庄区"},{"id":1482,"name":"河东区"},{"id":1483,"name":"沂南县"},{"id":1484,"name":"郯城县"},{"id":1485,"name":"沂水县"},{"id":1486,"name":"兰陵县"},{"id":1487,"name":"费县"},{"id":1488,"name":"平邑县"},{"id":1489,"name":"莒南县"},{"id":1490,"name":"蒙阴县"},{"id":1491,"name":"临沭县"}]
  139. ],
  140. moneycolumns: [
  141. ['3000-6000','6000-10000','1万以上','不限'],
  142. ],
  143. columns2: [
  144. ['高中', '大专', '本科', '硕士', '博士','不限']
  145. ]
  146. }
  147. },
  148. methods: {
  149. confirmEducation(e) {
  150. this.education = e.value[0]
  151. this.showEducation = false
  152. },
  153. confirmWork(e) {
  154. this.work = e.value[0]
  155. this.showwork = false
  156. },
  157. getWork() {
  158. uni.$u.http.post('/api/index/WorkNature').then(res => {
  159. this.columns1 = [res.data]
  160. this.columns1[0].push({id:7,name:'不限'})
  161. })
  162. },
  163. getAddress() {
  164. uni.$u.http.post('/api/index/linyi').then(res => {
  165. this.addresscolumns[1] = res.data
  166. this.addresscolumns[1].unshift({id:3750,name:'不限'})
  167. })
  168. },
  169. start() {
  170. if (this.age.length == 0) {
  171. this.$u.toast('请选择年龄')
  172. return
  173. }
  174. if (!this.education) {
  175. this.$u.toast('请选择学历')
  176. return
  177. }
  178. if (Object.keys(this.work).length == 0) {
  179. this.$u.toast('请选择工作性质')
  180. return
  181. }
  182. if (this.height.length==0) {
  183. this.$u.toast('请选择身高')
  184. return
  185. }
  186. if (this.money.length==0) {
  187. this.$u.toast('请选择月收入')
  188. return
  189. }
  190. if (this.address.length==0) {
  191. this.$u.toast('请选择现住地')
  192. return
  193. }
  194. var data = {
  195. age_min: this.age[0],
  196. age_max: this.age[1],
  197. nature: this.work.id==7?'不限':this.work.id,
  198. education: this.education,
  199. height_min:this.height[0],
  200. height_max:this.height[1],
  201. income:this.moneyIndex,
  202. area_id:this.address[1].id==3750?'不限':this.address[1].id,
  203. }
  204. uni.navigateTo({
  205. url: './pipeizhong?info=' + JSON.stringify(data)
  206. })
  207. },
  208. changeHandler(e) {
  209. console.log(11, e)
  210. const {
  211. columnIndex,
  212. value,
  213. values, // values为当前变化列的数组内容
  214. index,
  215. // 微信小程序无法将picker实例传出来,只能通过ref操作
  216. picker = this.$refs.uPicker
  217. } = e
  218. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  219. if (columnIndex === 0) {
  220. this.columns[1] = [...this.columns[0]]
  221. console.log(123, this.columns[1])
  222. // picker为选择器this实例,变化第二列对应的选项
  223. // picker.setColumnValues(1, this.columnData[index])
  224. this.columns[1].splice(0, index)
  225. this.$set(this.columns, 1, this.columns[1])
  226. console.log(456, this.columns[1])
  227. }
  228. },
  229. // 回调参数为包含columnIndex、value、values
  230. confirm(e) {
  231. this.age = e.value
  232. this.showage = false
  233. },
  234. heightconfirm(e) {
  235. this.height = e.value
  236. this.showheight = false
  237. },
  238. moneyconfirm(e) {
  239. this.moneyIndex=e.indexs[0]+1
  240. this.money = e.value
  241. this.showmoney = false
  242. },
  243. addressconfirm(e){
  244. console.log(e)
  245. this.address = e.value
  246. this.showaddress = false
  247. },
  248. }
  249. }
  250. </script>
  251. <style lang="scss">
  252. page {
  253. padding: 40rpx 60rpx;
  254. }
  255. .publish {
  256. width: 630rpx;
  257. height: 104rpx;
  258. line-height: 104rpx;
  259. text-align: center;
  260. background: #D8D8D8;
  261. border-radius: 52rpx;
  262. font-size: 36rpx;
  263. color: #fff;
  264. image {
  265. width: 64rpx;
  266. height: 64rpx;
  267. margin-bottom: 5rpx;
  268. vertical-align: middle;
  269. }
  270. }
  271. .select {
  272. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  273. }
  274. </style>