noticeList.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <view class="item vflex">
  6. <view class="hflex acenter">
  7. <view class="read" v-if="item.is_read"></view>
  8. <view class="name">{{item.title}}</view>
  9. </view>
  10. <view class="container">{{item.content}}</view>
  11. <view class="hflex acenter jbetween">
  12. <view class="text_style1">{{item.create_time}}</view>
  13. <view class="hflex acenter" @click="toDetail(item.id)">
  14. <view class="text_style2">查看详情</view>
  15. <image src="/static/images/comment/right.png" mode="widthFix" style="width: 28rpx;"></image>
  16. </view>
  17. </view>
  18. </view>
  19. </block>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import $api from '@/static/js/api.js'
  25. export default {
  26. data() {
  27. return {
  28. pageList: [
  29. {
  30. id: 0,
  31. is_read: false,
  32. title: '您有新的积分待领取',
  33. content: '一周悄悄过去留下小秘密,来瞧瞧上周的消费了多少吧,你的钱都花在哪里了呢',
  34. create_time: '2022-10-28 16:58',
  35. },
  36. {
  37. id: 1,
  38. is_read: true,
  39. title: '您有新的积分待领取',
  40. content: '一周悄悄过去留下小秘密,来瞧瞧上周的消费了多少吧,你的钱都花在哪里了呢',
  41. create_time: '2022-10-28 16:58',
  42. }
  43. ]
  44. }
  45. },
  46. onLoad() {
  47. },
  48. methods: {
  49. // 打开详情
  50. toDetail(id) {
  51. $api.jump('/page_index/pages/index/noticeDetail?id=' + id)
  52. }
  53. }
  54. }
  55. </script>
  56. <style lang="scss" scoped>
  57. .content {
  58. background-color: #f4f4f4;
  59. padding: 20rpx 30rpx 0;
  60. .list {
  61. .item {
  62. margin-bottom: 20rpx;
  63. width: 100%;
  64. background: #fff;
  65. border-radius: 20rpx;
  66. box-sizing: border-box;
  67. padding: 32rpx 20rpx 26rpx;
  68. .read {
  69. width: 12rpx;
  70. height: 12rpx;
  71. background-color: #ff4040;
  72. border-radius: 50%;
  73. margin-right: 16rpx;
  74. }
  75. .name {
  76. font-size: 32rpx;
  77. color: #222;
  78. }
  79. .container {
  80. width: 100%;
  81. padding: 24rpx 0;
  82. border-bottom: 1rpx solid #f4f4f4;
  83. font-size: 28rpx;
  84. color: #878787;
  85. line-height: 40rpx;
  86. margin-bottom: 30rpx;
  87. }
  88. .text_style1 {
  89. font-size: 28rpx;
  90. color: #888;
  91. }
  92. .text_style2 {
  93. font-size: 28rpx;
  94. color: #222;
  95. margin-right: 5rpx;
  96. }
  97. }
  98. }
  99. }
  100. </style>