checkReport.vue 3.7 KB

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