opsCharginglog.wxml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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/user_log.png'></image>
  12. </view>
  13. <view class='charging_text_title1'>
  14. <text class='bold'>{{charginglog.sysUser.userName}}</text>
  15. <text class="h1">{{charginglog.sysUser.phonenumber}}</text>
  16. </view>
  17. </view>
  18. <!-- <text>{{charginglog.chargPile.chargPileName}}</text> -->
  19. <view class="inline-view">
  20. <text class='inline' decode='true'>VIN车牌号:</text><text class='gray inline' decode='true'>{{charginglog.platenumber}}&nbsp;&nbsp;&nbsp;&nbsp;</text>
  21. <text class='inline'>录入车牌号:</text><text class='gray inline'>{{charginglog.userPlateNumber}}</text>
  22. </view>
  23. <view class="inline-view">
  24. <text class='inline' decode='true'>车架号:</text><text class='gray inline' decode='true'>{{charginglog.vinno}}&nbsp;</text>
  25. </view>
  26. <view class="inline-view">
  27. <text class='inline'></text><text class='gray inline'>{{charginglog.chargstarttime}}-{{charginglog.chargendtime}}</text>
  28. <!-- <text class='inline'>充电时间:</text><text class='gray inline'>{{charginglog.chargstarttime}}-{{charginglog.chargendtime}}</text> -->
  29. </view>
  30. <view class="inline-view">
  31. <text class='inline' decode='true'>起止SOC:</text><text class='gray inline' decode='true'>{{charginglog.socstart}} - {{charginglog.socend}}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</text>
  32. <text class='inline'>充电量(度):</text><text class='gray inline'>{{charginglog.chargpower}}</text>
  33. </view>
  34. <view class="inline-view">
  35. <text class='inline'>结束原因:</text><text class='gray inline'>{{charginglog.chargpilelogCause}}</text>
  36. </view>
  37. </view>
  38. </scroll-view>