charginglog.wxml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!--pages/ucenter/charginglog/charginglog.wxml-->
  2. <scroll-view class='context' scroll-y='true' bindscrolltolower="bindScrollTolowerEvent" >
  3. <view class='context_block'></view>
  4. <view class="text_context" wx:for="{{charginglogs}}" wx:key="id" wx:for-item="charginglog" hover-class='active'>
  5. <!-- <view class="map-1" bindtap="getRoute">
  6. <image src="/images/jt.png"></image>
  7. <view>路线</view>
  8. </view> -->
  9. <view class='charging_text_title'>
  10. <view class='charging'>
  11. <image src='/images/charging2_1.png'></image>
  12. </view>
  13. <view class='charging_text_title1'>
  14. <text class='bold'>{{charginglog.chargStation.chargStationName}}</text>
  15. <text class="h1">{{charginglog.chargStation.address}}</text>
  16. </view>
  17. </view>
  18. <text>{{charginglog.chargPile.chargPileName}}</text>
  19. <view class="inline-view">
  20. <text class='inline' decode='true'>充电时长:{{charginglog.totalTime}}&nbsp;&nbsp;&nbsp;&nbsp;</text>
  21. <text class='inline'>充电电量:{{charginglog.chargpower}}度</text>
  22. </view>
  23. <text class='gray'>{{charginglog.startTime}}-{{charginglog.endTime}}</text>
  24. <view style='line-height:0;'>
  25. <text class='inline gray1'>总费用:</text>
  26. <text class='inline red'>{{charginglog.chargallmoney}}</text>
  27. <text class='inline gray1' decode='true'>元&nbsp;&nbsp;&nbsp;&nbsp;服务费:</text>
  28. <text class='inline red'>{{charginglog.chargservice}}</text>
  29. <text class='inline gray1' decode='true'>元&nbsp;&nbsp;&nbsp;&nbsp;电费:</text>
  30. <text class='inline red'>{{charginglog.chargmoney}}</text>
  31. <text class='inline gray1'>元</text>
  32. </view>
  33. </view>
  34. </scroll-view>