checkReport.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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">{{item.CreateTime}}</view>
  5. <view class="carPlate">
  6. <view class="plate">{{item.PlateNumber}}</view>
  7. <view class="mileage" v-if="item.currentMileage>0">{{item.currentMileage}}km</view>
  8. </view>
  9. <view class="shopName"v-if="item.carmodel">{{item.carmodel}}</view>
  10. <view class="itemContent">{{item.shopname}}</view>
  11. </view>
  12. <!-- 上拉 加载更多 -->
  13. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</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: [],
  28. noMoreShow: false,
  29. urlStr:'',
  30. }
  31. },
  32. onLoad() {
  33. this.page = 1;
  34. this.myOrderCoupon();
  35. //this.urlStr = this.$request.webUrl+'#/carOwner/index'
  36. },
  37. methods: {
  38. goDetail(id) {
  39. // uni.navigateTo({
  40. // url: 'reportDetail?id=' + id
  41. // })
  42. uni.navigateTo({
  43. url: 'reportUni?id=' + id
  44. })
  45. },
  46. myOrderCoupon() {
  47. uni.showLoading({
  48. title: '加载中'
  49. })
  50. this.$http('opencheckSheet/getTestList', {
  51. // page: this.page,
  52. // limit: 10,
  53. }, 'GET').then(res => {
  54. uni.hideLoading();
  55. // var list = res.data.Items
  56. var list = res.data
  57. // 处理 undefined和null转为空白字符串
  58. // list.forEach((item, index) => {
  59. // for (const key in item) {
  60. // item[key] = this.$praseStrEmpty(item[key])
  61. // }
  62. // })
  63. if (this.page == 1) {
  64. this.itemData = list
  65. } else {
  66. this.itemData = this.itemData.concat(list)
  67. }
  68. if (list.length < 10) {
  69. this.noMoreShow = true
  70. } else {
  71. this.noMoreShow = false
  72. }
  73. })
  74. },
  75. },
  76. // 下拉刷新 上拉加载更多
  77. onPullDownRefresh() {
  78. this.page = 1
  79. this.myOrderCoupon()
  80. setTimeout(function() {
  81. uni.stopPullDownRefresh();
  82. }, 1000);
  83. },
  84. onReachBottom() {
  85. // this.page++;
  86. this.myOrderCoupon()
  87. },
  88. }
  89. </script>
  90. <style>
  91. .box {
  92. min-height: 100vh;
  93. background-color: #F4F5F7;
  94. padding-top: 20rpx;
  95. }
  96. .itemHistory {
  97. margin: 0rpx 24rpx 20rpx;
  98. padding: 20rpx;
  99. background-color: #FFFFFF;
  100. border-radius: 10rpx;
  101. }
  102. .time {
  103. font-size: 24rpx;
  104. color: #999999;
  105. }
  106. .carPlate {
  107. margin: 20rpx 0rpx 15rpx;
  108. display: flex;
  109. align-items: center;
  110. justify-content: flex-start;
  111. }
  112. .plate {
  113. font-size: 30rpx;
  114. color: #3C3C3C;
  115. font-weight: bold;
  116. margin-right: 20rpx;
  117. }
  118. .mileage {
  119. font-size: 24rpx;
  120. color: #F19D01;
  121. padding: 0rpx 10rpx;
  122. border: 1rpx solid #F19D01;
  123. border-radius: 4rpx;
  124. height: 36rpx;
  125. }
  126. .shopName{
  127. color: #666666;
  128. font-size: 24rpx;
  129. margin: 16rpx 0rpx;
  130. /* 隐藏文字显示 ...不换行 */
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. white-space: nowrap;
  134. }
  135. .itemContent {
  136. color: #666666;
  137. font-size: 24rpx;
  138. /* 隐藏文字显示 ...不换行 */
  139. overflow: hidden;
  140. text-overflow: ellipsis;
  141. white-space: nowrap;
  142. }
  143. .noMore {
  144. text-align: center;
  145. line-height: 50rpx;
  146. color: #999999;
  147. font-size: 28rpx;
  148. }
  149. </style>