123456789101112131415161718192021222324252627282930313233343536373839 |
- <!--pages/ucenter/charginglog/charginglog.wxml-->
- <scroll-view class='context' scroll-y='true' bindscrolltolower="bindScrollTolowerEvent" >
- <view class='context_block'></view>
-
- <view class="text_context" wx:for="{{charginglogs}}" wx:key="id" wx:for-item="charginglog" hover-class='active'>
- <!-- <view class="map-1" bindtap="getRoute">
- <image src="/images/jt.png"></image>
- <view>路线</view>
- </view> -->
- <view class='charging_text_title'>
- <view class='charging'>
- <image src='/images/charging2_1.png'></image>
- </view>
- <view class='charging_text_title1'>
- <text class='bold'>{{charginglog.chargStation.chargStationName}}</text>
- <text class="h1">{{charginglog.chargStation.address}}</text>
- </view>
- </view>
- <text>{{charginglog.chargPile.chargPileName}}</text>
- <view class="inline-view">
- <text class='inline' decode='true'>充电时长:{{charginglog.totalTime}} </text>
- <text class='inline'>充电电量:{{charginglog.chargpower}}度</text>
- </view>
-
- <text class='gray'>{{charginglog.startTime}}-{{charginglog.endTime}}</text>
- <view style='line-height:0;'>
- <text class='inline gray1'>总费用:</text>
- <text class='inline red'>{{charginglog.chargallmoney}}</text>
- <text class='inline gray1' decode='true'>元 服务费:</text>
- <text class='inline red'>{{charginglog.chargservice}}</text>
- <text class='inline gray1' decode='true'>元 电费:</text>
- <text class='inline red'>{{charginglog.chargmoney}}</text>
- <text class='inline gray1'>元</text>
- </view>
-
- </view>
-
- </scroll-view>
|