fine.wxml 1.3 KB

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