historySpend.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <template>
  2. <view class="box">
  3. <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item.ID)">
  4. <view class="time">2021-09-03</view>
  5. <view class="carPlate">
  6. <view class="plate">鲁A12345</view>
  7. <view class="mileage">1000km</view>
  8. </view>
  9. <view class="shopName">门店名称门店名称门店名称门店名称门店名称门店名称门店名称</view>
  10. <view class="itemContent">商品 项目商品 项目商品 项目商品 项目商品 项目商品 项目商品 项目</view>
  11. </view>
  12. <!-- 上拉 加载更多 -->
  13. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  14. <!-- 无数据空白页 -->
  15. <nodata v-if="itemData.length==0"></nodata>
  16. </view>
  17. </template>
  18. <script>
  19. import nodata from '../../components/nodata/nodata.vue'
  20. export default {
  21. components: {
  22. nodata,
  23. },
  24. data() {
  25. return {
  26. page: 1,
  27. itemData: [1, 2, 3],
  28. noMoreShow: false,
  29. }
  30. },
  31. onLoad() {
  32. this.page = 1
  33. // this.myOrderCoupon()
  34. },
  35. methods: {
  36. goDetail(id) {
  37. uni.navigateTo({
  38. url: 'historyDetail?id=' + id
  39. })
  40. },
  41. myOrderCoupon() {
  42. uni.showLoading({
  43. title: '加载中'
  44. })
  45. this.$http('worldKeepCar/keepCarMy/listTCouponPage', {
  46. page: this.page,
  47. limit: 10,
  48. }, 'GET').then(res => {
  49. uni.hideLoading();
  50. var list = res.data.Items
  51. // 处理 undefined和null转为空白字符串
  52. list.forEach((item, index) => {
  53. for (const key in item) {
  54. item[key] = this.$praseStrEmpty(item[key])
  55. }
  56. })
  57. if (this.page == 1) {
  58. this.itemData = list
  59. } else {
  60. this.itemData = this.itemData.concat(list)
  61. }
  62. if (list.length < 10) {
  63. this.noMoreShow = true
  64. } else {
  65. this.noMoreShow = false
  66. }
  67. if (this.itemData.length != 0) {
  68. this.itemData.forEach((item, index) => {
  69. if (item.pickNum <= 0) {
  70. this.allHave = false
  71. }
  72. })
  73. }
  74. })
  75. },
  76. },
  77. // 下拉刷新 上拉加载更多
  78. onPullDownRefresh() {
  79. this.page = 1
  80. this.myOrderCoupon()
  81. setTimeout(function() {
  82. uni.stopPullDownRefresh();
  83. }, 1000);
  84. },
  85. onReachBottom() {
  86. this.page++;
  87. this.myOrderCoupon()
  88. },
  89. }
  90. </script>
  91. <style>
  92. .box {
  93. min-height: 100vh;
  94. background-color: #F4F5F7;
  95. padding-top: 20rpx;
  96. }
  97. .itemHistory {
  98. margin: 0rpx 24rpx 20rpx;
  99. padding: 20rpx;
  100. background-color: #FFFFFF;
  101. border-radius: 10rpx;
  102. }
  103. .time {
  104. font-size: 24rpx;
  105. color: #999999;
  106. }
  107. .carPlate {
  108. margin: 20rpx 0rpx 15rpx;
  109. display: flex;
  110. align-items: center;
  111. justify-content: flex-start;
  112. }
  113. .plate {
  114. font-size: 30rpx;
  115. color: #3C3C3C;
  116. font-weight: bold;
  117. margin-right: 20rpx;
  118. }
  119. .mileage {
  120. font-size: 24rpx;
  121. color: #F19D01;
  122. padding: 0rpx 10rpx;
  123. border: 1rpx solid #F19D01;
  124. border-radius: 4rpx;
  125. height: 36rpx;
  126. }
  127. .shopName,
  128. .itemContent {
  129. color: #666666;
  130. font-size: 24rpx;
  131. margin: 15rpx 0rpx;
  132. /* 隐藏文字显示 ...不换行 */
  133. overflow: hidden;
  134. text-overflow: ellipsis;
  135. white-space: nowrap;
  136. }
  137. </style>