parking-order.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.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">
  32. <text class="label occupyTest">已产生占位费:</text>
  33. <text class="value occupyTest">{{item.occupyFee || 0}}</text>
  34. </view>
  35. <!-- 警告文字 -->
  36. <view class="warning-text">
  37. 为避免给您带来更多的经济损失,请充电结束后及时挪车!
  38. </view>
  39. <!-- 按钮 -->
  40. <button class="confirm-btn" bindtap="handleConfirm">
  41. 我已知晓,将尽快挪车
  42. </button>
  43. <!-- 联系客服 -->
  44. <view class="contact-link" bindtap="handleContact">联系客服</view>
  45. </view>
  46. </view>