123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!--pages/ucenter/charginglog/charginglog.wxml-->
- <view class='title'>
- <!--<text>您已减排</text>
- <text class='bold'>0KG</text>-->
- </view>
- <scroll-view class='context' scroll-y='true'>
- <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.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>
- <text class='inline' decode='true'>充电时长:{{charginglog.totalTime}} </text>
- <text class='inline'>充电电量:{{charginglog.chargpower}}度</text>
- <text class='gray'>{{charginglog.startTime}}-{{charginglog.endTime}}</text>
- <view style='line-height:0;'>
- <text class='inline'>总费用:</text>
- <text class='inline red'>{{charginglog.chargallmoney}}</text>
- <text class='inline' decode='true'>元 服务费:</text>
- <text class='inline red'>{{charginglog.chargservice}}</text>
- <text class='inline' decode='true'>元 电费:</text>
- <text class='inline red'>{{charginglog.chargmoney}}</text>
- <text class='inline'>元</text>
- </view>
- <text wx:if="{{charginglog.paytype==1}}" decode='true'>支付方式:余额</text>
- <text wx:if="{{charginglog.paytype==2}}" decode='true'>支付方式:信用欠款</text>
- <text wx:if="{{charginglog.paytype==3}}" decode='true'>支付方式:支付宝</text>
- <text wx:if="{{charginglog.paytype==4}}" decode='true'>支付方式:微信支付</text>
- <text wx:if="{{charginglog.paytype==5}}" decode='true'>支付方式:银联卡</text>
- <text wx:if="{{charginglog.paytype==6}}" decode='true'>支付方式:虚拟货币</text>
- </view>
-
- </scroll-view>
|