question.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view class="expense">
  3. <view class="block">
  4. <view class="item title ">
  5. <view class="label">
  6. 为什么预估价格与实际价格不一样
  7. </view>
  8. <view class="value">
  9. </view>
  10. </view>
  11. <view class="notice">
  12. 下单前的预估价格是根据单时的实时路况预估行驶里程,行驶时长计算得出,预估价格仅供参考。 实际支付价格是根据实际行驶里程,等候时长,下单区域,行驶时长等综合因素计算得出,是最终的订单价格。
  13. </view>
  14. <view class="item title ">
  15. <view class="label">
  16. 路桥费、停车费、加油费等费用
  17. </view>
  18. <view class="value">
  19. </view>
  20. </view>
  21. <view class="notice">
  22. 服务过程中产生的路桥费、停车费、加油费及其其他附加费由车主承担。 实际支付价格是根据实际行驶里程,等候时长,下单区域,行驶时长等综合因素计算得出,是最终的订单价格。
  23. </view>
  24. <!--
  25. <view class="notice">
  26. 预付费用是根据实时交通情况、预估行驶里程、时间等因素计算
  27. 得出,存在波动,仅供参考。(行程调整、路线修改、高速费等
  28. 将影响最终价格)
  29. </view> -->
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. }
  38. },
  39. methods: {
  40. },
  41. onLoad() {
  42. },
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .expense {
  47. background: #f5f5f5;
  48. height: 100vh;
  49. padding-top: 20rpx;
  50. .block {
  51. margin-bottom: 20rpx;
  52. background: #fff;
  53. padding: 28rpx 34rpx;
  54. }
  55. .item {
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-between;
  59. color: #AAAAAA;
  60. font-size: 28rpx;
  61. line-height: 70rpx;
  62. position: relative;
  63. .jiantou {
  64. position: absolute;
  65. top: 50%;
  66. right: 0%;
  67. transform: translateY(-50%);
  68. width: 20rpx;
  69. height: 20rpx;
  70. }
  71. }
  72. .item.title {
  73. color: #222222;
  74. }
  75. .item.border {
  76. border-bottom: 2rpx solid #F0F0F0;
  77. padding-bottom: 20rpx;
  78. margin-bottom: 20rpx;
  79. }
  80. .total {
  81. text-align: right;
  82. color: #222222;
  83. font-size: 28rpx;
  84. margin: 28rpx 0;
  85. .num {
  86. font-weight: bold;
  87. font-size: 36rpx;
  88. }
  89. }
  90. .notice {
  91. color: #AAAAAA;
  92. font-size: 24rpx;
  93. }
  94. }
  95. </style>