parking-order.wxml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!--components/parking-order.wxml-->
  2. <view class="popup-mask" wx:if="{{showPopup}}" wx:for="{{occupyOrder}}" wx:key="id">
  3. <view class="popup-content">
  4. <!-- 标题 -->
  5. <view class="popup-title">占位提醒</view>
  6. <!-- 充电站信息区域 -->
  7. <view class='charging_text_title'>
  8. <view class='charging'>
  9. <image src='/images/zhangweifei.png'></image>
  10. </view>
  11. <view class='charging_text_title1'>
  12. <text class='bold'>{{item.chargstationname}}</text>
  13. <text class="chargpile">{{item.chargpileids}} </text>
  14. </view>
  15. </view>
  16. <!-- 充电桩名称 -->
  17. <view class="pile-info">{{item.chargpilename}}</view>
  18. <!-- 时间信息 -->
  19. <view class="time-info">
  20. <view class="info-row">
  21. <text class="label">占位开始时间:</text>
  22. <text class="value">{{item.occupyBeginTime || 0}}</text>
  23. </view>
  24. <view class="info-row">
  25. <text class="label">已占位时长:</text>
  26. <text class="value">{{item.occupyTime || 0}}</text>
  27. </view>
  28. </view>
  29. <!-- 费用信息 -->
  30. <view class="info-row fee-info">
  31. <text class="label">已产生占位费:</text>
  32. <text class="value">{{item.occupyFee || 0}}</text>
  33. </view>
  34. <!-- 警告文字 -->
  35. <view class="warning-text">
  36. 为避免给您带来更多的经济损失,请充电结束后及时挪车!
  37. </view>
  38. <!-- 按钮 -->
  39. <button class="confirm-btn" bindtap="handleConfirm">
  40. 我已知晓,将尽快挪车
  41. </button>
  42. <!-- 联系客服 -->
  43. <view class="contact-link" bindtap="handleContact">联系客服</view>
  44. </view>
  45. </view>