pipei.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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.length==0?'':money[0]+'-'+money[1]">
  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 :show="showage" @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm"
  74. @change="changeHandler">
  75. </u-picker>
  76. <u-picker :show="showheight" @cancel='showheight=false' title="身高" ref="uPicker" :columns="heightcolumns"
  77. @confirm="heightconfirm">
  78. </u-picker>
  79. <u-picker :show="showmoney" @cancel='showmoney=false' title="月收入" ref="uPicker" :columns="moneycolumns"
  80. @confirm="moneyconfirm">
  81. </u-picker>
  82. <u-picker :show="showaddress" @cancel='showaddress=false' keyName="name" title="居住地" ref="uPicker"
  83. :columns="addresscolumns" @confirm="addressconfirm">
  84. </u-picker>
  85. <u-picker :show="showEducation" @cancel='showEducation=false' title="学历" ref="uPicker" :columns="columns2"
  86. @confirm="confirmEducation">
  87. </u-picker>
  88. <u-picker :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 = 159; 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. money: [],
  119. height: [],
  120. showEducation: false,
  121. showage: false,
  122. showwork: false,
  123. education: '',
  124. columns1: [],
  125. columns: [
  126. [18],
  127. [18]
  128. ],
  129. heightcolumns: [
  130. ['不限'],
  131. ['不限']
  132. ],
  133. addresscolumns: [
  134. [{"id": 1,
  135. "name": "临沂市"}
  136. ],
  137. []
  138. ],
  139. moneycolumns: [
  140. ['不限', '3000元', '5000元', '7000元', '9000元', '11000元', '13000元', '15000元', '17000元', '20000元'],
  141. ['不限', '3000元', '5000元', '7000元', '9000元', '11000元', '13000元', '15000元', '17000元', '20000元'],
  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. })
  161. },
  162. getAddress() {
  163. uni.$u.http.post('/api/index/linyi').then(res => {
  164. this.addresscolumns[1] = res.data
  165. })
  166. },
  167. start() {
  168. if (this.age.length == 0) {
  169. this.$u.toast('请选择年龄')
  170. return
  171. }
  172. if (!this.education) {
  173. this.$u.toast('请选择学历')
  174. return
  175. }
  176. if (Object.keys(this.work).length == 0) {
  177. this.$u.toast('请选择工作性质')
  178. return
  179. }
  180. if (this.height.length==0) {
  181. this.$u.toast('请选择身高')
  182. return
  183. }
  184. if (this.money.length==0) {
  185. this.$u.toast('请选择月收入')
  186. return
  187. }
  188. if (this.address.length==0) {
  189. this.$u.toast('请选择现住地')
  190. return
  191. }
  192. var data = {
  193. age_min: this.age[0],
  194. age_max: this.age[1],
  195. nature: this.work.id,
  196. education: this.education,
  197. height_min:this.height[0],
  198. height_max:this.height[1],
  199. income_min:this.money[0],
  200. income_max:this.money[1],
  201. area_id:this.address[1].id,
  202. }
  203. uni.navigateTo({
  204. url: './pipeizhong?info=' + JSON.stringify(data)
  205. })
  206. },
  207. changeHandler(e) {
  208. console.log(11, e)
  209. const {
  210. columnIndex,
  211. value,
  212. values, // values为当前变化列的数组内容
  213. index,
  214. // 微信小程序无法将picker实例传出来,只能通过ref操作
  215. picker = this.$refs.uPicker
  216. } = e
  217. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  218. if (columnIndex === 0) {
  219. this.columns[1] = [...this.columns[0]]
  220. console.log(123, this.columns[1])
  221. // picker为选择器this实例,变化第二列对应的选项
  222. // picker.setColumnValues(1, this.columnData[index])
  223. this.columns[1].splice(0, index)
  224. this.$set(this.columns, 1, this.columns[1])
  225. console.log(456, this.columns[1])
  226. }
  227. },
  228. // 回调参数为包含columnIndex、value、values
  229. confirm(e) {
  230. this.age = e.value
  231. this.showage = false
  232. },
  233. heightconfirm(e) {
  234. this.height = e.value
  235. this.showheight = false
  236. },
  237. moneyconfirm(e) {
  238. this.money = e.value
  239. this.showmoney = false
  240. },
  241. addressconfirm(e){
  242. console.log(e)
  243. this.address = e.value
  244. this.showaddress = false
  245. },
  246. }
  247. }
  248. </script>
  249. <style lang="scss">
  250. page {
  251. padding: 40rpx 60rpx;
  252. }
  253. .publish {
  254. width: 630rpx;
  255. height: 104rpx;
  256. line-height: 104rpx;
  257. text-align: center;
  258. background: #D8D8D8;
  259. border-radius: 52rpx;
  260. font-size: 36rpx;
  261. color: #fff;
  262. image {
  263. width: 64rpx;
  264. height: 64rpx;
  265. margin-bottom: 5rpx;
  266. vertical-align: middle;
  267. }
  268. }
  269. .select {
  270. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  271. }
  272. </style>