rules.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <view class="expense">
  3. <view class="block">
  4. <view class="label">
  5. 起步价
  6. </view>
  7. <view class="notice">
  8. 实际计费以下单时为准,超出部分加收里程费。
  9. </view>
  10. <view class="item title ">
  11. <view class="label">
  12. 00:00-07:00
  13. </view>
  14. <view class="value">
  15. 18元(含3.0公里)
  16. </view>
  17. </view>
  18. <view class="item title ">
  19. <view class="label">
  20. 07:00-21:00
  21. </view>
  22. <view class="value">
  23. 18元(含3.0公里)
  24. </view>
  25. </view>
  26. <view class="item title border">
  27. <view class="label">
  28. 21:00-24:00
  29. </view>
  30. <view class="value">
  31. 18元(含3.0公里)
  32. </view>
  33. </view>
  34. <view class="label">
  35. 里程费
  36. </view>
  37. <view class="notice">
  38. 起步超出里程后开始计算。
  39. </view>
  40. <view class="item title ">
  41. <view class="label">
  42. 00:00-24:00
  43. </view>
  44. <view class="value">
  45. 2元(0.8公里)
  46. </view>
  47. </view>
  48. <view class="label">
  49. 返程费
  50. </view>
  51. <view class="notice">
  52. 总里程超过一定公里数后,加收返程费。
  53. </view>
  54. <view class="item title border">
  55. <view class="label">
  56. 00:00-24:00
  57. </view>
  58. <view class="value">
  59. 超过7公里,加收30%返程费
  60. </view>
  61. </view>
  62. <view class="label">
  63. 等待费
  64. </view>
  65. <view class="notice">
  66. 司机到达后开始计算等待费。
  67. </view>
  68. <view class="item title border">
  69. <view class="label">
  70. 00:00-24:00
  71. </view>
  72. <view class="value">
  73. 免费10分钟,超出后1元/分钟
  74. </view>
  75. </view>
  76. <view class="label">
  77. 动态调价
  78. </view>
  79. <view class="notice border">
  80. 当恶劣天气、节假日、高峰期、周围司机较少时,为了鼓励司机更快接单,平台会临时调价以保障您的出行。
  81. </view>
  82. <view class="item title border">
  83. </view>
  84. <view class="label">
  85. 取消费
  86. </view>
  87. <view class="notice border">
  88. 因您的责任导致订单取消时,您可能需要支付一定的费用,用于补偿代驾师傅的空驶成本。
  89. </view>
  90. <view class="item title border">
  91. </view>
  92. <!--
  93. <view class="notice">
  94. 预付费用是根据实时交通情况、预估行驶里程、时间等因素计算
  95. 得出,存在波动,仅供参考。(行程调整、路线修改、高速费等
  96. 将影响最终价格)
  97. </view> -->
  98. </view>
  99. </view>
  100. </template>
  101. <script>
  102. export default {
  103. data() {
  104. return {
  105. }
  106. },
  107. methods: {
  108. },
  109. onLoad() {
  110. },
  111. }
  112. </script>
  113. <style lang="scss" scoped>
  114. .expense {
  115. background: #f5f5f5;
  116. height: 100vh;
  117. padding-top: 20rpx;
  118. .block {
  119. margin-bottom: 20rpx;
  120. background: #fff;
  121. padding: 28rpx 34rpx;
  122. }
  123. .item {
  124. display: flex;
  125. align-items: center;
  126. justify-content: space-between;
  127. color: #AAAAAA;
  128. font-size: 28rpx;
  129. line-height: 70rpx;
  130. position: relative;
  131. .jiantou {
  132. position: absolute;
  133. top: 50%;
  134. right: 0%;
  135. transform: translateY(-50%);
  136. width: 20rpx;
  137. height: 20rpx;
  138. }
  139. }
  140. .item.title {
  141. color: #222222;
  142. }
  143. .item.border {
  144. border-bottom: 2rpx solid #F0F0F0;
  145. padding-bottom: 20rpx;
  146. margin-bottom: 20rpx;
  147. }
  148. .total {
  149. text-align: right;
  150. color: #222222;
  151. font-size: 28rpx;
  152. margin: 28rpx 0;
  153. .num {
  154. font-weight: bold;
  155. font-size: 36rpx;
  156. }
  157. }
  158. .notice {
  159. color: #AAAAAA;
  160. font-size: 24rpx;
  161. }
  162. }
  163. </style>