ganxingqu.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view>
  3. <view class="" style="margin-bottom: 20rpx;
  4. padding: 20rpx 30rpx;background-color: #fff;">
  5. <u-subsection bgColor="#F3F3F3" button-color="#222222" activeColor="#222222" @change="sectionChange" inactiveColor="#888888" :list="tabslist" :current="current"></u-subsection>
  6. </view>
  7. <view class="top1 u-flex u-row-between" v-for="(item,index) in list" :key="index">
  8. <view class="topleft u-flex">
  9. <image :src="item.headimg" mode=""></image>
  10. <view class="">
  11. <view class="name">
  12. {{item.nickname}}
  13. </view>
  14. <view class="area">
  15. {{item.shortname}}·{{item.age}}岁
  16. </view>
  17. </view>
  18. </view>
  19. <view class="topright" v-if="item.is_hui==0" @click="itemClick(item)">
  20. 感兴趣
  21. </view>
  22. <view class="topright" v-else @click="itemClick(item)">
  23. 取消感兴趣
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. onLoad() {
  31. this.getList()
  32. },
  33. data() {
  34. return {
  35. list:[],
  36. current:0,
  37. tabslist: ['互相感兴趣', '我感兴趣的', '对我感兴趣的'],
  38. }
  39. },
  40. methods: {
  41. itemClick(item){
  42. uni.$u.http.post('/api/user/user_interested',{mid:item.mid?item.mid:item.i_id}).then(res => {
  43. this.$u.toast(res.msg)
  44. this.getList()
  45. })
  46. },
  47. getList(){
  48. uni.$u.http.post('/api/user/interested',{type:this.current+1}).then(res => {
  49. this.list=res.data
  50. })
  51. },
  52. sectionChange(index) {
  53. if(this.current!=index){
  54. this.current = index;
  55. this.getList()
  56. }
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="scss">
  62. page{
  63. background-color: #F3F3F3;
  64. }
  65. .top1{
  66. padding: 10rpx 30rpx;
  67. background-color: #fff;
  68. // margin-bottom: 20rpx;
  69. }
  70. .topleft{
  71. image{
  72. width: 76rpx;
  73. height: 76rpx;
  74. border-radius: 50%;
  75. margin-right: 20rpx;
  76. }
  77. .name{
  78. font-size: 28rpx;
  79. color: #222222;
  80. font-weight: 600;
  81. image{
  82. margin-left: 8rpx;
  83. width: 28rpx;
  84. height: 28rpx;
  85. }
  86. }
  87. .area{
  88. font-size: 20rpx;
  89. color: #999999;
  90. }
  91. }
  92. .topright{
  93. font-size: 24rpx;
  94. width: 136rpx;
  95. height: 56rpx;
  96. text-align: center;
  97. line-height: 56rpx;
  98. border-radius: 28rpx;
  99. border: 3rpx solid #C7A6CE;
  100. font-weight: 400;
  101. color: #999999;
  102. background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  103. -webkit-background-clip: text;
  104. -webkit-text-fill-color: transparent;
  105. }
  106. </style>