list.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view class="content">
  3. <view class="list" v-if="type=='1'">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <view class="box" @click="toDetail(index)">
  6. <view class="hflex acenter">
  7. <view class="dian" v-if="item.is_read == 0"></view>
  8. <view class="title">{{item.title}}</view>
  9. </view>
  10. <u-parse :content="item.content"></u-parse>
  11. </view>
  12. </block>
  13. </view>
  14. <view class="list vflex acenter" v-if="type == '2'">
  15. <block v-for="(item,index) in pageList" :key="index">
  16. <view class="time">{{item.create_time}}</view>
  17. <view class="box">
  18. <view class="status" v-if="item.title == '买家拍下商品'">{{item.title}}</view>
  19. <view class="status" v-if="item.title == '买家已经付款'" style="color: #4D6DFF;">{{item.title}}</view>
  20. <view class="status" v-if="item.title == '订单被取消了'" style="color: #FF4D4D;">{{item.title}}</view>
  21. <view class="hflex acenter">
  22. <image :src="item.image" class="image" mode="aspectFill"></image>
  23. <view class="vflex jcenter">
  24. <view class="name">{{item.content}}</view>
  25. <view class="text">{{item.remark}}</view>
  26. </view>
  27. </view>
  28. </view>
  29. </block>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import $api from '@/static/js/api.js'
  35. var that = ''
  36. export default {
  37. data() {
  38. return {
  39. id: '',
  40. pageList: [],
  41. page: 1,
  42. total: 1,
  43. type: '',
  44. }
  45. },
  46. onLoad(options) {
  47. that = this
  48. that.type = options.index
  49. // that.getList()
  50. },
  51. onShow() {
  52. that.getList()
  53. },
  54. methods: {
  55. getList() {
  56. console.log('type=' +that.type);
  57. $api.req({
  58. url: '/data/api.business.User/message_list',
  59. method: 'POST',
  60. data: {
  61. page:that.page,
  62. type: that.type
  63. }
  64. }, function(res) {
  65. console.log(res)
  66. if(res.code == 1) {
  67. if(that.page == 1) {
  68. that.pageList = res.data.data
  69. } else {
  70. that.pageList = that.pageList.concat(res.data.data)
  71. }
  72. that.total = res.data.length
  73. }
  74. })
  75. },
  76. // 查看详情
  77. toDetail(index) {
  78. $api.jump('/pages/mine/message/detail?id=' + that.pageList[index].id)
  79. },
  80. onReachBottom() {
  81. if (Number(that.page) * 15 >= Number(that.total)) {
  82. $api.info("没有更多了")
  83. } else {
  84. that.page++
  85. that.getList()
  86. }
  87. }
  88. },
  89. }
  90. </script>
  91. <style lang="scss" scoped>
  92. .content {
  93. background-color: #F4F4F4;
  94. padding: 0 30rpx;
  95. .list {
  96. width: 100%;
  97. .time {
  98. margin-top: 20rpx;
  99. max-width: 100%;
  100. width: max-content;
  101. text-align: center;
  102. font-size: 20rpx;
  103. font-weight: 400;
  104. color: #FFFFFF;
  105. line-height: 28rpx;
  106. padding: 6rpx 24rpx;
  107. background: #CECECE;
  108. border-radius: 20rpx;
  109. }
  110. .box {
  111. width: 100%;
  112. box-sizing: border-box;
  113. padding: 20rpx 20rpx ;
  114. background-color: #fff;
  115. border-radius: 24rpx;
  116. margin-top: 20rpx;
  117. .dian {
  118. width: 12rpx;
  119. height: 12rpx;
  120. border-radius: 50%;
  121. background-color: #ff4646;
  122. margin-right: 8rpx;
  123. }
  124. .title {
  125. font-size: 32rpx;
  126. color: #222;
  127. font-weight: 600;
  128. margin-bottom: 20rpx;
  129. }
  130. .status {
  131. font-size: 26rpx;
  132. font-weight: 500;
  133. color: #FF874D;
  134. line-height: 36rpx;
  135. padding-bottom: 16rpx;
  136. }
  137. .image {
  138. width: 156rpx;
  139. height: 156rpx;
  140. border-radius: 16rpx;
  141. margin-right: 18rpx;
  142. }
  143. .name {
  144. font-size: 28rpx;
  145. font-weight: 400;
  146. color: #222222;
  147. line-height: 40rpx;
  148. max-width: 470rpx;
  149. text-overflow: ellipsis;
  150. overflow: hidden;
  151. display: -webkit-box;
  152. -webkit-box-orient: vertical;
  153. box-orient: vertical;
  154. line-clamp: 2;
  155. -webkit-line-clamp: 2;
  156. }
  157. .text {
  158. font-size: 24rpx;
  159. font-weight: 400;
  160. color: #929292;
  161. line-height: 34rpx;
  162. padding-top: 22rpx;
  163. }
  164. }
  165. }
  166. }
  167. </style>