renzhengVip.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view>
  3. <view class="" style="background-color: #fff;width: 690rpx;margin-bottom: 20rpx;border-radius: 40rpx;" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  4. <view class="">
  5. <image :src="item.headimg" mode="" style="width: 690rpx;
  6. height: 640rpx;
  7. border-radius: 40rpx;"></image>
  8. </view>
  9. <view class="" style="font-size: 40rpx;padding: 20rpx;">
  10. {{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/index/1@2x.png" mode="" style="width: 36rpx;height: 36rpx;margin:0 20rpx" v-show="item.sex==2"></image>
  11. </view>
  12. <view class="u-flex u-row-between" style="font-size: 28rpx;padding: 20rpx;color: #888888;">
  13. <text>{{item.province_id?item.province_id+'·':''}}{{item.age?item.age+'·':''}}{{item.height?item.height:''}}</text>
  14. <image src="../../static/index/dazhaohu.png" mode="" style="width: 190rpx;height: 68rpx;vertical-align: middle;" @click.stop="tomessage(item)"></image>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. onLoad() {
  22. this.getList()
  23. },
  24. data() {
  25. return {
  26. list:[],
  27. page:1
  28. }
  29. },
  30. onReachBottom() {
  31. this.page++
  32. this.getList()
  33. },
  34. methods: {
  35. tomessage(item){
  36. uni.navigateTo({
  37. url:'./message?otherid='+item.im_id
  38. })
  39. },
  40. toinfo(item){
  41. uni.navigateTo({
  42. url:'../profile/otherPage?id='+item.id
  43. })
  44. },
  45. getList(){
  46. uni.$u.http.post('/api/Index/certified_user',{page:this.page}).then(res => {
  47. this.list=[...this.list,...res.data]
  48. })
  49. },
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. page{
  55. padding: 20rpx 30rpx;
  56. background-color: #F6F2FD;
  57. }
  58. </style>