carList.vue 1.8 KB

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