carList.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <!-- 汽车通行记录 -->
  2. <template>
  3. <view>
  4. <view v-show="visible">
  5. <!-- <view class="img">
  6. <image src="../../static/null_image_checking@2x.png" style="width: 100%;height: 100%;"></image>
  7. </view> -->
  8. <view class="title">
  9. 暂无通行记录
  10. </view>
  11. </view>
  12. <view style="margin-top: 34rpx;" v-show="!visible">
  13. <view class="item" v-for="(item,index) in data" :key="index" :class="{active:isPrimeNum(index)}">
  14. <view class="content">
  15. <view class="left">{{item.deviceName}}</view>
  16. <view class="date">
  17. {{item.passTime}}
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. visible:true,
  29. id: "", //汽车ID
  30. data: []
  31. }
  32. },
  33. onLoad(option) {
  34. this.id = option.id
  35. this.getData()
  36. },
  37. methods: {
  38. //获取通行记录数据
  39. getData() {
  40. uni.showLoading({
  41. mask: true,
  42. title: '加载中'
  43. })
  44. this.http.httpRequest('/wxapplet/owner/carpass/list', 'get', {
  45. carNo: this.id,
  46. carType: '1'
  47. }, true).then((res) => {
  48. console.log(res)
  49. if (res.code == 0) {
  50. // 判断当前是否返回数据
  51. if(res.data.length==0){
  52. // uni.showToast({
  53. // title:'暂无通行记录',
  54. // 'icon':'none'
  55. // })
  56. this.visible=true
  57. }else{
  58. this.visible=false
  59. this.data=res.data
  60. }
  61. uni.hideLoading()
  62. } else {
  63. uni.hideLoading()
  64. uni.showToast({
  65. title: res.msg,
  66. 'icon': 'none'
  67. })
  68. }
  69. }).catch(() => {
  70. uni.hideLoading()
  71. })
  72. },
  73. // 判断当前索引是否为奇数
  74. isPrimeNum(num) {
  75. if (num % 2 == 0) {
  76. return false
  77. } else {
  78. return true
  79. };
  80. }
  81. }
  82. }
  83. </script>
  84. <style>
  85. .title{
  86. width: 510rpx;
  87. height: 50rpx;
  88. font-size:36rpx;
  89. font-family:PingFang SC;
  90. font-weight:400;
  91. line-height:50rpx;
  92. color:rgba(36,36,36,1);
  93. margin:0 auto;
  94. margin-top: 30rpx;
  95. text-align: center;
  96. }
  97. .item {
  98. width: 100%;
  99. height: 80rpx;
  100. background: rgba(249, 249, 249, 1);
  101. opacity: 1;
  102. }
  103. .active {
  104. background: rgba(255, 255, 255, 1);
  105. }
  106. .content {
  107. width: 630rpx;
  108. height: 100%;
  109. margin: 0 auto;
  110. display: flex;
  111. justify-content: space-between;
  112. }
  113. .date {
  114. width: 260rpx;
  115. height: 34rpx;
  116. font-size: 24rpx;
  117. font-family: PingFang SC;
  118. font-weight: 400;
  119. color: rgba(153, 153, 153, 1);
  120. margin-top: 22rpx;
  121. text-align: right;
  122. }
  123. .left {
  124. width: 400rpx;
  125. height: 36rpx;
  126. font-size: 26rpx;
  127. font-family: PingFang SC;
  128. font-weight: 400;
  129. color: rgba(51, 51, 51, 1);
  130. margin-top: 22rpx;
  131. }
  132. </style>