fensi.vue 1.8 KB

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