message.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <view>
  3. <view class="list">
  4. <view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
  5. <view class="top">
  6. <view class="icon">&#xe60d;</view>
  7. <view class="title">交易消息</view>
  8. <view class="date">2023-8-310:50</view>
  9. <view class="clear"></view>
  10. </view>
  11. <view class="content">订单20210803172489305已支付,请尽快与对方联系!</view>
  12. <view class="clear"></view>
  13. </view>
  14. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  15. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. list: [],
  24. param: { pageNum: 1, pageSize: 10, orderByColumn: 'createTime', isAsc: 'desc' },
  25. loadMore: true
  26. };
  27. },
  28. onLoad(e) {
  29. this.getData();
  30. },
  31. methods: {
  32. getData() {
  33. this.http.request({
  34. url: '/level-one-server/app/TbPortNews/getPortNewsList',
  35. data: this.param,
  36. loading: 'false',
  37. success: res => {
  38. this.list.push(...res.data.data);
  39. }
  40. });
  41. },
  42. detail(item) {
  43. uni.navigateTo({
  44. url: '/pages/news/detail?id=' + item.id
  45. });
  46. },
  47. //刷新数据
  48. refresh() {
  49. this.loadMore = true;
  50. this.param.pageNum = 1;
  51. this.list = [];
  52. this.getData();
  53. }
  54. },
  55. //下拉刷新
  56. onPullDownRefresh() {
  57. setTimeout(() => {
  58. this.refresh();
  59. uni.stopPullDownRefresh();
  60. }, 1000);
  61. },
  62. //上拉加载
  63. onReachBottom() {
  64. if (this.loadMore) {
  65. this.param.pageNum++;
  66. this.getData();
  67. }
  68. }
  69. };
  70. </script>
  71. <style lang="scss">
  72. page {
  73. background-color: #f5f5f5;
  74. }
  75. .list {
  76. padding: 12px;
  77. .item {
  78. background-color: white;
  79. border-bottom: 1px solid #f0f2f7;
  80. padding: 14px;
  81. margin-bottom: 10px;
  82. border-radius: 10px;
  83. .top {
  84. color: $font-c;
  85. border-bottom: 1px solid $line;
  86. padding-bottom: 13px;
  87. .icon {
  88. float: left;
  89. width: 17px;
  90. height: 17px;
  91. border-radius: 50%;
  92. background-color: $main-color;
  93. padding: 5px;
  94. text-align: center;
  95. line-height: 19px;
  96. color: white;
  97. }
  98. .title {
  99. float: left;
  100. font-weight: bold;
  101. padding-left: 7px;
  102. color: #192b20;
  103. }
  104. .date {
  105. float: right;
  106. color: #a0a2a6;
  107. }
  108. }
  109. .content {
  110. padding-top: 15px;
  111. color: #666666;
  112. }
  113. }
  114. }
  115. </style>