parking-order.wxml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!--components/parking-order.wxml-->
  2. <view class="popup-mask" wx:if="{{showPopup}}" wx:for="{{occupyFeeOrderList}}" wx:key="id">
  3. <!-- <view class="popup-mask" wx:for="{{occupyFeeOrderList}}" wx:key="id"> -->
  4. <view class="popup-content">
  5. <!-- 标题 -->
  6. <view class="popup-title">占位提醒</view>
  7. <!-- 充电站信息区域 -->
  8. <view class='charging_text_title'>
  9. <view class='charging'>
  10. <image src='/images/zhangweifei.png'></image>
  11. </view>
  12. <view class='charging_text_title1'>
  13. <text class='bold occupyTest'>{{item.brandName || ''}}{{item.chargstationname}}</text>
  14. <text class="chargpile occupyTest">{{item.chargpileids}} </text>
  15. </view>
  16. </view>
  17. <!-- 充电桩名称 -->
  18. <view class="pile-info">{{item.chargpilename}}</view>
  19. <!-- 时间信息 -->
  20. <view class="time-info">
  21. <view class="info-row">
  22. <text class="label occupyTest">占位开始时间:</text>
  23. <text class="value occupyTest">{{item.occupyBeginTime || 0}}</text>
  24. </view>
  25. <view class="info-row">
  26. <text class="label occupyTest">已占位时长:</text>
  27. <text class="value occupyTest">{{item.occupyTime || 0}}分</text>
  28. </view>
  29. </view>
  30. <!-- 费用信息 -->
  31. <view class="info-row fee-info" style="margin-bottom: 18rpx;">
  32. <text class="label occupyTest">已产生占位费:</text>
  33. <text class="value occupyTest">{{item.occupyFee || 0}}元</text>
  34. </view>
  35. <!-- 费用信息 -->
  36. <view>
  37. <view style="font-weight: 600;font-size: 24rpx;padding: 0 10rpx;">费用说明</view>
  38. <view class="info-rows" style="padding: 0 10rpx;">
  39. <text class="value occupyTest" style="margin: none;white-space: normal;">收费规则:{{template.costCycleFee || 0}}元/{{template.costCycle|| 0}}分钟,{{template.freeTime || 0}}分钟内免费</text>
  40. <text class="value occupyTest" style="white-space: normal;" wx:if='{{template.maxFee > 0}}'>,单次封顶{{template.maxFee}}元/次
  41. </text>
  42. </view>
  43. </view>
  44. <!-- 时间信息 -->
  45. <view class="info-row">
  46. <text class="value occupyTest">收费时段:</text>
  47. <view class="value occupyTest" style="font-size: 24rpx;">{{template.costTimePeriod || '无'}}</view>
  48. </view>
  49. <!-- 警告文字 -->
  50. <view class="warning-text">
  51. 为避免给您带来更多的经济损失,请充电结束后及时挪车!
  52. </view>
  53. <!-- 按钮 -->
  54. <button class="confirm-btn" bindtap="handleConfirm">
  55. 我已知晓,将尽快挪车
  56. </button>
  57. <!-- 联系客服 -->
  58. <view class="contact-link" bindtap="handleContact">联系客服</view>
  59. </view>
  60. </view>