accounting_rules.wxml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <view class="box">
  2. <!-- <image src="http://resource.bike.hanyiyun.com/weapp/announcement.png" style="width:100%;height:358rpx;"></image> -->
  3. <image src="/img/xiaobaiTop.png" style="width:512rpx;height:56rpx;margin-top:47rpx;" wx:if="{{title=='小白闪现出行'}}"></image>
  4. <image src="/img/shanxianTop.png" style="width:512rpx;height:56rpx;margin-top:47rpx;" wx:if="{{title=='闪现出行'}}"></image>
  5. <image src="http://resource.bike.hanyiyun.com/bike/bike.png" style="width:357rpx;height:255rpx;"></image>
  6. <view class="content">
  7. <view class="temporary" style="padding-top:35rpx;">
  8. <text></text>
  9. <text>押金</text>
  10. <text></text>
  11. </view>
  12. <view class="rule">
  13. <view>
  14. <text style="color:#555555;">押金</text>
  15. <text style="color:#555555;">{{setting.deposit}}元</text>
  16. </view>
  17. </view>
  18. <view class="temporary">
  19. <text></text>
  20. <text>临时用车</text>
  21. <text></text>
  22. </view>
  23. <view class="rule">
  24. <view wx:if="{{setting.start}}">
  25. <text style="color:#555555;">起步价</text>
  26. <text style="color:#555555;">{{setting.starting_price}}元 / {{setting.starting_price_time}}分钟</text>
  27. </view>
  28. <view>
  29. <text style="color:#555555;"><text style="color:#555555;" wx:if="{{setting.start}}">超出</text>时长费(含临时停车)</text>
  30. <text style="color:#555555;">{{setting.per_money}}元 / {{setting.per_minute}}分钟</text>
  31. </view>
  32. </view>
  33. <view class="temporary" wx:if="{{setting.is_open_day_rent==1}}">
  34. <text></text>
  35. <text>日租用车</text>
  36. <text></text>
  37. </view>
  38. <view class="rule" wx:if="{{setting.is_open_day_rent==1}}">
  39. <view>
  40. <text style="color:#555555;">起步价</text>
  41. <text style="color:#555555;">{{setting.day_rent_money}}元 / {{setting.day_rent_hours}}小时</text>
  42. </view>
  43. <view>
  44. <text style="color:#555555;">超出费用</text>
  45. <text style="color:#555555;">{{setting.per_hours_day_rent_timeout_money}}元 / 1小时</text>
  46. </view>
  47. <text>每天{{setting.day_rent_capping_money}}元封顶</text>
  48. </view>
  49. <view class="temporary">
  50. <text></text>
  51. <text>调度费</text>
  52. <text></text>
  53. </view>
  54. <view class="dispatch">
  55. <view>
  56. <text style="color:#555555;">调度费({{setting.min_limit_km}}公里内)</text>
  57. <text style="color:#555555;">{{setting.min_dispatching_fee}}元</text>
  58. </view>
  59. <text>未在还车点进行还车(运营区域外还车、禁停区还车),将收取30元调度费。</text>
  60. <text>{{setting.min_limit_km}}公里外每超出{{setting.over_limit_per_km}}公里增加{{setting.over_limit_per_km_money}}元调度费;{{setting.max_dispatching_fee}}元封顶</text>
  61. </view>
  62. </view>
  63. </view>