pipeizhong.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view>
  3. <view class="index">
  4. <view class="pipei" v-if="isSearch">
  5. <view class="bg">
  6. <image src="../../static/index/pipeibg.png" mode="" :style="{'transform':'scale('+count+')'}"></image>
  7. <view class="avatar">
  8. <image :src="userInfo.headimg" mode=""></image>
  9. </view>
  10. </view>
  11. <view class="" style="margin-top: 60rpx;text-align: center;font-size: 28rpx;">
  12. 正在根据你的择偶要求<br> 搜寻匹配的人
  13. </view>
  14. </view>
  15. <view class="list u-flex u-row-between" v-if="!isSearch">
  16. <view class="item" v-for="(item,index) in list" :key="index" @click="torecommendinfo(item)">
  17. <view class="">
  18. <image :src="item.headimg" mode="aspectFill"></image>
  19. </view>
  20. <view class="" style="font-size: 32rpx;padding: 16rpx 0 8rpx 20rpx;">
  21. {{item.nickname}} <image src="../../static/index/2@2x.png" mode="" style="width: 32rpx;height: 32rpx;margin:0 20rpx;vertical-align: middle;" v-show="itm.sex==1"></image> <image src="../../static/index/1@2x.png" mode="" style="width: 32rpx;height: 32rpx;margin:0 20rpx;vertical-align: middle;" v-show="itm.sex==2"></image>
  22. </view>
  23. <view class="u-flex u-row-between" style="font-size: 24rpx;padding: 8rpx 0 34rpx 20rpx;color: #888888;">
  24. <text>{{item.province_id?item.province_id:''}}{{item.age?'·'+item.age+'岁·':''}}{{item.height?item.height+'cm':''}}</text>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. isSearch:true,
  36. count:0,
  37. timer:null,
  38. list:[],
  39. userInfo:{}
  40. }
  41. },
  42. onLoad(option) {
  43. this.userInfo=JSON.parse(uni.getStorageSync('userInfo'))
  44. this.getList(JSON.parse(option.info))
  45. },
  46. onShow() {
  47. if(this.isSearch){
  48. this.timer=setInterval(()=>{
  49. console.log(1)
  50. if(this.count<1){
  51. this.count+=0.1
  52. }
  53. if(this.count>=1){
  54. this.count=0
  55. }
  56. },200)
  57. }
  58. },
  59. onUnload() {
  60. clearInterval(this.timer)
  61. },
  62. methods: {
  63. torecommendinfo(item){
  64. uni.navigateTo({
  65. url:'../profile/otherPage?id='+item.id
  66. })
  67. },
  68. getList(data){
  69. uni.$u.http.post('/api/Index/Intelligent',data).then(res => {
  70. this.list=res.data
  71. setTimeout(()=>{
  72. if(this.list.length==0){
  73. this.$u.toast('暂未找到合适的伴侣')
  74. setTimeout(()=>{
  75. uni.navigateBack({
  76. })
  77. },1000)
  78. }else{
  79. this.isSearch=false
  80. }
  81. },3000)
  82. })
  83. }
  84. }
  85. }
  86. </script>
  87. <style lang="scss">
  88. .list{
  89. flex-wrap: wrap;
  90. padding: 20rpx 30rpx;
  91. .item{
  92. border-radius: 28rpx;
  93. background-color: #fff;
  94. margin-bottom: 20rpx;
  95. image{
  96. width: 330rpx;
  97. height: 320rpx;
  98. background: #FFFFFF;
  99. border-radius: 28rpx;
  100. }
  101. }
  102. }
  103. .pipei{
  104. position: absolute;
  105. top: 132rpx;
  106. left: 50%;
  107. transform: translateX(-50%);
  108. .bg{
  109. margin: 0 auto;
  110. width: 610rpx;
  111. height: 610rpx;
  112. position: relative;
  113. text-align: center;
  114. image{
  115. width: 610rpx;
  116. height: 610rpx;
  117. }
  118. .avatar{
  119. position: absolute;
  120. top: 50%;
  121. left: 50%;
  122. transform: translate(-50%,-50%);
  123. image{
  124. width: 172rpx;
  125. height: 172rpx;
  126. border-radius: 50%;
  127. border: 8rpx solid #FFFFFF;
  128. }
  129. }
  130. }
  131. }
  132. page{
  133. background-color: #F6F2FD;
  134. }
  135. </style>