123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <!-- 汽车通行记录 -->
- <template>
- <view>
- <view v-show="visible">
- <!-- <view class="img">
- <image src="../../static/null_image_checking@2x.png" style="width: 100%;height: 100%;"></image>
- </view> -->
- <view class="title">
- 暂无通行记录
- </view>
- </view>
- <view style="margin-top: 34rpx;" v-show="!visible">
- <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 {
- visible:true,
- 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) {
- // 判断当前是否返回数据
- if(res.data.length==0){
- // uni.showToast({
- // title:'暂无通行记录',
- // 'icon':'none'
- // })
- this.visible=true
- }else{
- this.visible=false
- this.data=res.data
- }
-
- 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>
- .title{
- width: 510rpx;
- height: 50rpx;
- font-size:36rpx;
- font-family:PingFang SC;
- font-weight:400;
- line-height:50rpx;
- color:rgba(36,36,36,1);
- margin:0 auto;
- margin-top: 30rpx;
- text-align: center;
- }
- .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: 260rpx;
- 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>
|