dianzan.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. 点赞了你的动态
  12. </view>
  13. <view class="area">
  14. {{item.create_at}}
  15. </view>
  16. </view>
  17. </view>
  18. <view class="topright">
  19. <image :src="item.show_images[0]" mode=""></image>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. onLoad() {
  27. this.getList()
  28. },
  29. data() {
  30. return {
  31. list:[]
  32. }
  33. },
  34. methods: {
  35. getList(){
  36. uni.$u.http.post('/api/user/fabulous').then(res => {
  37. this.list=res.data
  38. })
  39. },
  40. }
  41. }
  42. </script>
  43. <style lang="scss">
  44. page{
  45. background-color: #F3F3F3;
  46. }
  47. .top1{
  48. padding: 10rpx 30rpx;
  49. background-color: #fff;
  50. border-bottom: 2rpx solid #F3F3F3;
  51. // margin-bottom: 20rpx;
  52. }
  53. .topleft{
  54. image{
  55. width: 76rpx;
  56. height: 76rpx;
  57. border-radius: 50%;
  58. margin-right: 20rpx;
  59. }
  60. .name{
  61. font-size: 28rpx;
  62. color: #222222;
  63. font-weight: 600;
  64. image{
  65. margin-left: 8rpx;
  66. width: 28rpx;
  67. height: 28rpx;
  68. }
  69. }
  70. .area{
  71. font-size: 20rpx;
  72. color: #999999;
  73. }
  74. }
  75. .topright{
  76. image{
  77. width: 112rpx;
  78. height: 112rpx;
  79. border-radius: 20rpx;
  80. }
  81. }
  82. </style>