registerVip.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <template>
  2. <view>
  3. <view class="u-flex u-row-between" style="height: 80rpx;background-color: #fff;position:fixed;top:0;width: 750rpx;line-height: 80rpx;padding: 0 30rpx;box-sizing: border-box;color: #666666;font-size: 26rpx;">
  4. <view class="u-flex" >
  5. <view class="u-flex" @click="showsex=true">
  6. 性别 <u-icon name="arrow-down-fill" size="10" color="#000"></u-icon>
  7. </view>
  8. <view class="u-flex" style="margin-left: 30rpx;" @click="showage=true">
  9. 年龄 <u-icon name="arrow-down-fill" size="10" color="#000"></u-icon>
  10. </view>
  11. </view>
  12. <view class="u-flex">
  13. 筛选 <u-icon name="hourglass" size="20" color="#000"></u-icon>
  14. </view>
  15. </view>
  16. <view class="" style="background-color: #fff;width: 690rpx;margin:0 30rpx 20rpx;border-radius: 40rpx;" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  17. <view class="">
  18. <image :src="item.headimg" mode="" style="width: 690rpx;
  19. height: 640rpx;
  20. border-radius: 40rpx;"></image>
  21. </view>
  22. <view class="" style="font-size: 40rpx;padding: 20rpx;">
  23. {{item.nickname}} <image src="../../static/index/2@2x.png" mode="" style="width: 36rpx;height: 36rpx;margin:0 20rpx" v-show="item.sex==1"></image> <image src="../../static/profile/8@2x.png" mode="" style="width: 104rpx;height: 36rpx;" v-show="item.sex==2"></image>
  24. </view>
  25. <view class="u-flex u-row-between" style="font-size: 28rpx;padding: 20rpx;color: #888888;">
  26. <text>{{item.province_id?item.province_id+'·':''}}{{item.age?item.age+'·':''}}{{item.height?item.height:''}}</text>
  27. <image src="../../static/index/dazhaohu.png" mode="" style="width: 190rpx;height: 68rpx;vertical-align: middle;" @click.stop="tomessage(item)"></image>
  28. </view>
  29. </view>
  30. <u-picker :show="showsex" :columns="sexcolumns" keyName="name" @confirm='changesex' @cancel='showsex=false' :closeOnClickOverlay='true'>
  31. </u-picker>
  32. <u-picker :show="showage" @cancel='showage=false' title="年龄" ref="uPicker" :columns="columns" @confirm="confirm" @change="changeage">
  33. </u-picker>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. onLoad() {
  39. var list=this.columns[0]
  40. var list1=this.columns[1]
  41. for( let i=1;i<66;i++){
  42. if(list[list.length-1]<65){
  43. list.push(list[0]+i)
  44. list1.push(list1[0]+i)
  45. }
  46. }
  47. this.getInfo()
  48. this.getList()
  49. },
  50. data() {
  51. return {
  52. columns1:[],
  53. columns: [
  54. [18],
  55. [18]
  56. ],
  57. sexcolumns: [
  58. ['男','女']
  59. ],
  60. showsex:false,
  61. showage:false,
  62. list:[],
  63. page:1,
  64. info:{},
  65. sex:''
  66. }
  67. },
  68. onReachBottom() {
  69. this.page++
  70. this.getList()
  71. },
  72. methods: {
  73. changeage(e) {
  74. console.log(11,e)
  75. const {
  76. columnIndex,
  77. value,
  78. values, // values为当前变化列的数组内容
  79. index,
  80. // 微信小程序无法将picker实例传出来,只能通过ref操作
  81. picker = this.$refs.uPicker
  82. } = e
  83. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  84. if (columnIndex === 0) {
  85. this.columns[1]=[...this.columns[0]]
  86. console.log(123,this.columns[1])
  87. // picker为选择器this实例,变化第二列对应的选项
  88. // picker.setColumnValues(1, this.columnData[index])
  89. this.columns[1].splice(0,index)
  90. this.$set(this.columns,1,this.columns[1])
  91. console.log(456,this.columns[1])
  92. }
  93. },
  94. changesex(e){
  95. this.sex=e.indexs[0]*1+1
  96. this.showsex=false
  97. },
  98. getInfo(){
  99. uni.$u.http.post('/api/user/userinfo').then(res => {
  100. if(res.code==1){
  101. this.info=res.data
  102. }
  103. })
  104. },
  105. tomessage(item){
  106. if(this.info.vip_level==0){
  107. this.$u.toast('您暂未认证')
  108. return
  109. }
  110. if(this.info.vip_level==2){
  111. this.$u.toast('经用户反馈,您账户存在违规行为,暂不支持使用该功能')
  112. return
  113. }
  114. if(this.info.vip_level==3){
  115. this.$u.toast('您的账户已注销,暂不支持使用该功能')
  116. return
  117. }
  118. uni.navigateTo({
  119. url:'./message?otherid='+item.im_id
  120. })
  121. },
  122. toinfo(item){
  123. uni.navigateTo({
  124. url:'../profile/otherPage?id='+item.id
  125. })
  126. },
  127. getList(){
  128. uni.$u.http.post('/api/Index/registered_user',{page:this.page}).then(res => {
  129. this.list=[...this.list,...res.data]
  130. })
  131. },
  132. }
  133. }
  134. </script>
  135. <style lang="scss">
  136. page{
  137. padding: 80rpx 0;
  138. background-color: #F6F2FD;
  139. }
  140. </style>