123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <!-- 汽车通行记录 -->
- <template>
- <view>
- <view style="margin-top: 34rpx;">
- <view class="item" v-for="(item,index) in data" :key="index" :class="{active:isPrimeNum(index)}">
- <view class="content">
- <view class="left">{{item.deviceName}}</view>
- <view class="date">
- {{item.passTime}}
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- id: "", //汽车ID
- data: []
- }
- },
- onLoad(option) {
- this.id = option.id
- this.getData()
- },
- methods: {
- //获取通行记录数据
- getData() {
- uni.showLoading({
- mask: true,
- title: '加载中'
- })
- this.http.httpRequest('/wxapplet/owner/carpass/list', 'get', {
- carNo: this.id,
- carType: '1'
- }, true).then((res) => {
- console.log(res)
- if (res.code == 0) {
- this.data=res.data.rows
- uni.hideLoading()
- } else {
- uni.hideLoading()
- uni.showToast({
- title: res.msg,
- 'icon': 'none'
- })
- }
- }).catch(() => {
- uni.hideLoading()
- })
- },
- // 判断当前索引是否为奇数
- isPrimeNum(num) {
- if (num % 2 == 0) {
- return false
- } else {
- return true
- };
- }
- }
- }
- </script>
- <style>
- .item {
- width: 100%;
- height: 80rpx;
- background: rgba(249, 249, 249, 1);
- opacity: 1;
- }
- .active {
- background: rgba(255, 255, 255, 1);
- }
- .content {
- width: 630rpx;
- height: 100%;
- margin: 0 auto;
- display: flex;
- justify-content: space-between;
- }
- .date {
- width: 240rpx;
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- margin-top: 22rpx;
- text-align: right;
- }
- .left {
- width: 400rpx;
- height: 36rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(51, 51, 51, 1);
- margin-top: 22rpx;
- }
- </style>
|