checkReport.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'车检报告'" ></homenav>
  4. <view class="screenBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view style="height: 44px;"></view>
  7. <picker @change="bindPickerChange" :value="index" :range="array">
  8. <view class="screenName"> <span>车牌号:{{array[index]}}</span>
  9. <image src="../../static/timg/icon_arrow_right.png" mode="" class="jtImg"></image>
  10. </view>
  11. </picker>
  12. </view>
  13. <view style="height: 90rpx;"></view>
  14. <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item.id)">
  15. <view class="time">{{item.CreateTime}}</view>
  16. <view class="carPlate">
  17. <view class="plate">{{item.PlateNumber}}</view>
  18. <view class="mileage" v-if="item.currentMileage>0">{{item.currentMileage}}km</view>
  19. </view>
  20. <view class="shopName"v-if="item.carmodel">{{item.carmodel}}</view>
  21. <view class="itemContent">{{item.shopname}}</view>
  22. </view>
  23. <!-- 上拉 加载更多 -->
  24. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  25. <!-- 无数据空白页 -->
  26. <nodata v-if="itemData.length==0"></nodata>
  27. </view>
  28. </template>
  29. <script>
  30. import homenav from "../../components/homenav/nav.vue"
  31. import nodata from '../../components/nodata/nodata.vue'
  32. export default {
  33. components: {
  34. nodata,homenav
  35. },
  36. data() {
  37. return {
  38. page: 1,
  39. itemData: [],
  40. noMoreShow: false,
  41. urlStr:'',
  42. iStatusBarHeight:'',
  43. array: [],
  44. index: 0,
  45. wxOpenData: '',
  46. plateNumber:'',
  47. }
  48. },
  49. onLoad() {
  50. /* uni.navigateTo({
  51. url: 'reportUni?id=6C977C54-575E-4F67-9101-7A6D74DDD8BA'
  52. }) */
  53. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  54. this.page = 1;
  55. this.myOrderCoupon();
  56. this.getplateNumber()
  57. //this.urlStr = this.$request.webUrl+'#/carOwner/index'
  58. },
  59. methods: {
  60. bindPickerChange: function(e) {
  61. console.log('picker发送选择改变,携带值为', e.detail)
  62. this.index = e.detail.value
  63. this.plateNumber=this.array[this.index]
  64. if(this.index==0){
  65. this.plateNumber=''
  66. }
  67. this.myOrderCoupon()
  68. },
  69. getplateNumber(){
  70. console.log("444")
  71. this.wxOpenData= this.$store.state.wxOpenData;
  72. this.$http('openweiXinCardInfoController/plateNumber-by-customerId', {
  73. customerId:this.wxOpenData.loginInfo.uid
  74. }, 'GET').then(res => {
  75. this.array=res.data.split(',')
  76. this.array.unshift('全部')
  77. })
  78. },
  79. goDetail(id) {
  80. // uni.navigateTo({
  81. // url: 'reportDetail?id=' + id
  82. // })
  83. uni.navigateTo({
  84. url: 'reportUni?id=' + id
  85. })
  86. },
  87. myOrderCoupon() {
  88. uni.showLoading({
  89. title: '加载中'
  90. })
  91. this.$http('opencheckSheet/getTestList', {
  92. plateNumber:this.plateNumber
  93. // page: this.page,
  94. // limit: 10,
  95. }, 'GET').then(res => {
  96. uni.hideLoading();
  97. // var list = res.data.Items
  98. var list = res.data
  99. // 处理 undefined和null转为空白字符串
  100. // list.forEach((item, index) => {
  101. // for (const key in item) {
  102. // item[key] = this.$praseStrEmpty(item[key])
  103. // }
  104. // })
  105. if (this.page == 1) {
  106. this.itemData = list
  107. } else {
  108. this.itemData = this.itemData.concat(list)
  109. }
  110. if (list.length < 10) {
  111. this.noMoreShow = true
  112. } else {
  113. this.noMoreShow = false
  114. }
  115. })
  116. },
  117. },
  118. // 下拉刷新 上拉加载更多
  119. onPullDownRefresh() {
  120. this.page = 1
  121. this.myOrderCoupon()
  122. setTimeout(function() {
  123. uni.stopPullDownRefresh();
  124. }, 1000);
  125. },
  126. onReachBottom() {
  127. // this.page++;
  128. this.myOrderCoupon()
  129. },
  130. }
  131. </script>
  132. <style>
  133. .box {
  134. min-height: 100vh;
  135. background-color: #F4F5F7;
  136. padding-top: 20rpx;
  137. }
  138. .jtImg{
  139. width: 12rpx;height: 20rpx;
  140. margin-top: 10rpx;
  141. }
  142. .screenBox{
  143. background: #FFFFFF;
  144. margin-bottom: 20rpx;
  145. position: fixed;
  146. width: 100vw;
  147. top: 0;left: 0;
  148. }
  149. .screenName{
  150. padding: 24rpx;font-size: 28rpx;
  151. display: flex;
  152. justify-content: space-between;
  153. }
  154. .itemHistory {
  155. margin: 0rpx 24rpx 20rpx;
  156. padding: 20rpx;
  157. background-color: #FFFFFF;
  158. border-radius: 10rpx;
  159. }
  160. .time {
  161. font-size: 24rpx;
  162. color: #999999;
  163. }
  164. .carPlate {
  165. margin: 20rpx 0rpx 15rpx;
  166. display: flex;
  167. align-items: center;
  168. justify-content: flex-start;
  169. }
  170. .plate {
  171. font-size: 30rpx;
  172. color: #3C3C3C;
  173. font-weight: bold;
  174. margin-right: 20rpx;
  175. }
  176. .mileage {
  177. font-size: 24rpx;
  178. color: #F19D01;
  179. padding: 0rpx 10rpx;
  180. border: 1rpx solid #F19D01;
  181. border-radius: 4rpx;
  182. height: 36rpx;
  183. }
  184. .shopName{
  185. color: #666666;
  186. font-size: 24rpx;
  187. margin: 16rpx 0rpx;
  188. /* 隐藏文字显示 ...不换行 */
  189. overflow: hidden;
  190. text-overflow: ellipsis;
  191. white-space: nowrap;
  192. }
  193. .itemContent {
  194. color: #666666;
  195. font-size: 24rpx;
  196. /* 隐藏文字显示 ...不换行 */
  197. overflow: hidden;
  198. text-overflow: ellipsis;
  199. white-space: nowrap;
  200. }
  201. .noMore {
  202. text-align: center;
  203. line-height: 50rpx;
  204. color: #999999;
  205. font-size: 28rpx;
  206. }
  207. </style>