checkReport.vue 3.6 KB

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