shoucang-list.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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.img" mode="aspectFill"></image>
  5. <view class="img-right">
  6. <view class="hflex acenter jbetween right-top">
  7. <text>{{item.name}}</text>
  8. <text>{{item.time}}</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. }
  22. },
  23. onLoad() {
  24. this.getlist()
  25. },
  26. onShow() {
  27. },
  28. onPullDownRefresh() {
  29. },
  30. onReachBottom() {
  31. },
  32. methods: {
  33. getlist() {
  34. this.list = [
  35. {
  36. img: 'https://dummyimage.com/279x155/e3e3e3/fff',
  37. name: '爱思考的大黄猫',
  38. content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
  39. time: '1小时前'
  40. },
  41. {
  42. img: 'https://dummyimage.com/279x155/e3e3e3/fff',
  43. name: '爱思考的大黄猫',
  44. content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
  45. time: '1小时前'
  46. },
  47. {
  48. img: 'https://dummyimage.com/279x155/e3e3e3/fff',
  49. name: '爱思考的大黄猫',
  50. content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
  51. time: '1小时前'
  52. },
  53. {
  54. img: 'https://dummyimage.com/279x155/e3e3e3/fff',
  55. name: '爱思考的大黄猫',
  56. content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
  57. time: '1小时前'
  58. },
  59. {
  60. img: 'https://dummyimage.com/279x155/e3e3e3/fff',
  61. name: '爱思考的大黄猫',
  62. content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
  63. time: '1小时前'
  64. },
  65. {
  66. img: 'https://dummyimage.com/279x155/e3e3e3/fff',
  67. name: '爱思考的大黄猫',
  68. content: `收藏了你的文章“文章标题显示文章标题显示文…”`,
  69. time: '1小时前'
  70. }
  71. ]
  72. },
  73. }
  74. }
  75. </script>
  76. <style lang="scss">
  77. .content {
  78. background-color: #FFFFFF;
  79. padding: 0 28rpx;
  80. .list-item {
  81. padding: 28rpx 0 32rpx;
  82. border-bottom: 1px solid #F5F5F5;
  83. image {
  84. width: 92rpx;
  85. height: 92rpx;
  86. border-radius: 50%;
  87. }
  88. .img-right {
  89. width: calc(100% - 92rpx);
  90. padding: 0 0 0 20rpx;
  91. .right-top {
  92. width: 100%;
  93. text:first-child {
  94. font-size: 32rpx;
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: 600;
  97. color: #333333;
  98. }
  99. text:last-child {
  100. font-size: 22rpx;
  101. font-family: PingFangSC, PingFang SC;
  102. font-weight: 400;
  103. color: #999999;
  104. }
  105. }
  106. .text {
  107. font-size: 24rpx;
  108. font-family: PingFangSC, PingFang SC;
  109. font-weight: 400;
  110. color: #666666;
  111. padding: 14rpx 0 0;
  112. }
  113. }
  114. }
  115. }
  116. </style>