carpay.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <block wx:if="{{garden_id}}">
  2. <view class="top">
  3. <view class="desc">
  4. <block wx:if="{{plate_no}}">
  5. <view class="car">
  6. <view class="car">
  7. <image src="{{brand_pic}}" style="height: 50px;width: 50px;" />
  8. <view class="plate_header">
  9. <text bindtap="goMyCar">车牌:{{plate_no}}</text>
  10. <text>{{desc}}</text>
  11. </view>
  12. </view>
  13. <image src="http://ro7r875ut.hn-bkt.clouddn.com/qiehuan.png" style="height: 32px;width: 32px;" bindtap="goMyCar" />
  14. </view>
  15. </block>
  16. <block wx:else="">
  17. <view class="plate_header nocar">
  18. <text bindtap="goMyCar">名下暂无车辆</text>
  19. </view>
  20. </block>
  21. </view>
  22. <view class="months">
  23. <view class="month">
  24. <view>充值月数</view>
  25. <view class="month_item">
  26. <image class="timePic" src="http://ro7r875ut.hn-bkt.clouddn.com/time.png" />
  27. <input class="inputText" bindblur="getMonth"
  28. placeholder="请输入充值月数" maxlength="2" type="number" />
  29. </view>
  30. </view>
  31. <view class="amount">
  32. <view class="amount_item">
  33. <text>缴费总额</text>
  34. <text style="color: #F40909;">¥{{should_pay_amount/100}}</text>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="tips">
  40. {{charge_desc}}
  41. </view>
  42. <view class="payBtn">
  43. <button bindtap="car_pay" type="primary" style="background-color: #15D234;">去支付</button>
  44. </view>
  45. </block>
  46. <block wx:else="">
  47. <nopermission />
  48. </block>