12345678910111213141516171819202122232425 |
- <view class="box">
- <view wx:for="{{arr}}" wx:key="key" class="item" wx:if="{{arr!=''}}" bindtap="detail" data-id="{{item.no}}">
- <text class="time">罚单时间:{{item.occurrence_time}}</text>
- <!-- <text class="code">订单号:{{item.no}}</text> -->
- <!-- <text class="riding_time">骑行时间:2019-08-17 15:30</text>
- <text class="riding_location">骑行地点:龙子湖东大学城相济路与文苑路往南100米</text> -->
- <text class="weigui">{{item.detail}}</text>
- <view class="view1">
- <view>
- <text class="border">罚款金额</text>
- <text class="text1"><text style="color:#E9524A;">{{item.pay_money}}</text>元</text>
- </view>
- <view style="padding-left:50rpx;">
- <text class="border" style="width:140rpx;">车辆编号</text>
- <text class="text1" style="color:#E9524A;">{{item.bike_no}}</text>
- </view>
- <image src="/img/yichuli.png" style="width:106rpx;height:91rpx;" wx:if="{{item.pay_status==1}}" class="image"></image>
- <image src="/img/weichuli.png" style="width:106rpx;height:91rpx;" wx:if="{{item.pay_status==0}}" class="image"></image>
- </view>
- </view>
- <view wx:if="{{arr==''}}" class="none">
- <image src="/img/goodCredit.png" style="width:128rpx;height:128rpx"></image>
- <text>信用良好</text>
- </view>
- </view>
|