123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <view wx:if="{{chargPile}}" class="map_text" hover-class='active' >
-
- <view class='charging_text_title'>
- <view class='charging'>
- <image src='/images/charging2_1.png'></image>
- </view>
- <view class='charging_text_title1'>
- <text class='bold'>{{chargPile.chargPileName}}</text>
- <text class="h1">终端编号:{{chargPile.chargPileId}}</text>
- </view>
- <view class="soc" wx:if="{{chargPile.hasBattery == '2'}}">
- <image src='/images/dianliang.png'></image>
- <text class='h1'>电量:{{chargPile.currentSoc != null? chargPile.currentSoc :0}}%</text>
- </view>
- </view>
- {{chargPile.address}}
- <rich-text space='nbsp' nodes="地址:{{chargPile.address}}" style='line-height:30rpx;font-size:24rpx;margin-bottom:10rpx;word-wrap: break-word;' ></rich-text>
- {{chargPile.pileType=='快充'}}
- {{chargPile.pileType=='慢充'}}
- <text class="inline">时段参考费用:</text>
- <view class="rtable">
- <view class="rtr" style="font-size: 28rpx;">
- <view class="rtd t1">时段</view>
- <view class="rtd t2">电费</view>
- <view class="rtd t2">服务费</view>
- <view class="rtd t2">总费用</view>
- </view>
- <block wx:for="{{resultTable}}" wx:key="*this">
- <view wx:if="{{item.currentTime}}" class="rtr active" >当前费用</view>
- <view class="rtr {{item.currentTime?'active':''}}" >
- <view class="rtd t1">{{item.startTimeStr}} - {{item.endTimeStr}}</view>
- <view class="rtd t2">{{item.elecPrice}}{{item.elecPrice=='暂无费用'?'':'元'}}</view>
- <view class="rtd t2">{{item.servicePrice}}{{item.servicePrice=='暂无费用'?'':'元'}}</view>
- <view class="rtd t2">{{item.sumPrice}}{{item.sumPrice=='暂无费用'?'':'元'}}</view>
- </view>
- </block>
- </view>
-
-
- {{chargPile.chargprice}}{{chargPile.serviceprice}}{{chargPile.totalprice}}
- {{chargPile.sharpServicePrice}}{{chargPile.peakServicePrice}}{{chargPile.flatServicePrice}}{{chargPile.valleyServicePrice}}
- {{chargPile.sharpChargPrice}}{{chargPile.peakChargPrice}}{{chargPile.flatChargPrice}}{{chargPile.valleyChargPrice}}
- {{chargPile.sharpTotalPrice}}{{chargPile.peakTotalPrice}}{{chargPile.flatTotalPrice}}{{chargPile.valleyTotalPrice}}
-
- {{chargPile.showinfo}}
- {{chargPile.showinfo}}
- <view wx:if="{{chargPile.showinfo}}" style='margin-top:10rpx;'>
- <rich-text style='line-height:36rpx;color:#1D9BF7;font-size:30rpx;word-break:break-all;font-weight: bold;'>{{chargPile.showinfo}}</rich-text>
- </view>
- <view style='margin-top:10rpx;'>
- <rich-text style='line-height:36rpx;color:red;font-size:30rpx;word-break:break-all;'>您当前余额为:{{repaidbalance}}元。建议参考充电总费用(元/度电)与您爱车的电池容量(度),避免因费用不足导致充电量不足的情况发生。</rich-text><rich-text style='line-height:48rpx;color:black;font-size:32rpx;word-break:break-all;'></rich-text>
- </view>
-
- <view style='margin-top:10rpx;' wx:if="{{carParkingRate}}">
- <rich-text style='line-height:36rpx;color:#1D9BF7;font-size:30rpx;word-break:break-all;font-weight: bold;'>充电即减免 <text class="richHourNum">{{parkTime}}</text>小时停车费。请您确认入场车辆与启动充电时录入的车牌信息保持一致,如录入不一致将无法享受充电减免停车费优惠。</rich-text>
- </view>
- {{authStatus==0}}
- <block wx:if="{{false}}">
- <image class="scan_img" src="{{url}}" data-src="{{url}}" bindtap="previewImage"></image>
- <view class="scan_text">认证居民请扫码填写调查问卷</view>
- </block>
- </view>
- <button wx:if="{{chargPile}}" class='charg_button' bindtap="beginChargeMsg" >开始充电</button>
|