dianzan-list.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view class="content">
  3. <view class="list-item hflex acenter" v-for="(item,index) in list" :key="index">
  4. <image :src="item.image" mode="aspectFill"></image>
  5. <view class="img-right">
  6. <view class="hflex acenter jbetween right-top">
  7. <text>{{item.title}}</text>
  8. <text>{{item.created_at}}</text>
  9. </view>
  10. <view class="text">{{item.content}}</view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. import $api from '@/static/js/api.js'
  17. export default {
  18. data() {
  19. return {
  20. list: [],
  21. page: 1,
  22. last_page: 1,
  23. }
  24. },
  25. onLoad() {
  26. this.getlist()
  27. },
  28. onShow() {
  29. },
  30. onPullDownRefresh() {
  31. },
  32. onReachBottom() {
  33. if (this.last_page == this.page) {
  34. uni.$u.toast('已经到底了')
  35. return
  36. } else {
  37. this.page++
  38. this.getlist()
  39. }
  40. },
  41. methods: {
  42. getlist() {
  43. var that = this
  44. $api.req({
  45. url: 'notification',
  46. data: {
  47. is_page: 1,
  48. page: that.page,
  49. limit: 10,
  50. type: 'like'
  51. }
  52. }, function(res) {
  53. that.list = that.list.concat(res.data.list)
  54. that.last_page = res.data.last_page
  55. })
  56. },
  57. }
  58. }
  59. </script>
  60. <style lang="scss">
  61. .content {
  62. background-color: #FFFFFF;
  63. padding: 0 28rpx;
  64. .list-item {
  65. padding: 28rpx 0 32rpx;
  66. border-bottom: 1px solid #F5F5F5;
  67. image {
  68. width: 92rpx;
  69. height: 92rpx;
  70. border-radius: 50%;
  71. }
  72. .img-right {
  73. width: calc(100% - 92rpx);
  74. padding: 0 0 0 20rpx;
  75. .right-top {
  76. width: 100%;
  77. text:first-child {
  78. font-size: 32rpx;
  79. font-family: PingFangSC, PingFang SC;
  80. font-weight: 600;
  81. color: #333333;
  82. }
  83. text:last-child {
  84. font-size: 22rpx;
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 400;
  87. color: #999999;
  88. }
  89. }
  90. .text {
  91. font-size: 24rpx;
  92. font-family: PingFangSC, PingFang SC;
  93. font-weight: 400;
  94. color: #666666;
  95. padding: 14rpx 0 0;
  96. }
  97. }
  98. }
  99. }
  100. </style>