123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!--pages/scan_result/scan_result.wxml-->
- <view wx:if="{{chargPile}}" class="map_text" 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'>{{chargPile.address}}</text>
- <text class="h1">{{chargPile.chargPileName}}</text>
- </view>
- </view>
- <text>终端编号:{{chargPile.chargPileId}}</text>
- <!-- <text class='fast' wx:if="{{chargPile.pileType=='快充'}}">快桩:2小时</text>
- <text class='slow' wx:if="{{chargPile.pileType=='慢充'}}">慢桩:2小时</text> -->
- <text class="inline">实时参考费用:</text>
- <view style='line-height:0;'>
- <text decode='true' style='color:red;font-size:22rpx;'>电 费:{{chargPile.chargprice}}元 服务费:{{chargPile.serviceprice}}元 总费用:{{chargPile.totalprice}}元</text>
- </view>
- <text class="inline">参考价格:</text>
- <view style='line-height:0;'>
- <text decode='true' style='font-size:22rpx;'>服务费:尖峰{{chargPile.sharpServicePrice}}元 高峰{{chargPile.peakServicePrice}}元 平段{{chargPile.flatServicePrice}}元 低谷{{chargPile.valleyServicePrice}}元 </text>
- </view>
- <view style='line-height:0;'>
- <text decode='true' style='font-size:22rpx;'>电 费:尖峰{{chargPile.sharpChargPrice}}元 高峰{{chargPile.peakChargPrice}}元 平段{{chargPile.flatChargPrice}}元 低谷{{chargPile.valleyChargPrice}}元 </text>
- </view>
- <view style='line-height:0;'>
- <text decode='true' style='color:red;font-size:22rpx;'>总费用:尖峰{{chargPile.sharpTotalPrice}}元 高峰{{chargPile.peakTotalPrice}}元 平段{{chargPile.flatTotalPrice}}元 低谷{{chargPile.valleyTotalPrice}}元 </text>
- </view>
- <!-- <view style='line-height:0;'>
- <text decode='true' class='inline'>费用: </text>
- <text decode='true' class='slow inline'>{{chargPile.sharpChargPrice}}</text>
- <text decode='true' class='inline'>元尖 </text>
- <text decode='true' class='slow inline'>{{chargPile.peakChargPrice}}</text>
- <text decode='true' class='inline'>元峰 </text>
- <text decode='true' class='slow inline'>{{chargPile.flatChargPrice}}</text>
- <text decode='true' class='inline'>元平 </text>
- <text decode='true' class='slow inline'>{{chargPile.valleyChargPrice}}</text>
- <text decode='true' class='inline'>元谷 </text>
- </view> -->
- <text class="inline">峰谷时段划分:</text>
- <view style='line-height:0;'>
- <text decode='true' style='font-size:22rpx;'>高峰:10:00-15:00 18:00-21:00</text>
- </view>
- <view style='line-height:0;'>
- <text decode='true' style='font-size:22rpx;'>平段:07:00-10:00 15:00-18:00 21:00-23:00</text>
- </view>
- <view style='line-height:0;'>
- <text decode='true' style='font-size:22rpx;'>低谷:23:00至次日07:00</text>
- </view>
- <view style='line-height:0;'>
- <text decode='true' style='font-size:22rpx;'>尖峰:7\8月11:00-13:00 16:00-17:00</text>
- </view>
-
- <view wx:if="{{chargPile.showinfo}}">
- <rich-text style='line-height:48rpx;color:red;font-size:32rpx;word-break:break-all;'>{{chargPile.showinfo}}</rich-text>
- </view>
- </view>
- <button wx:if="{{chargPile}}" class='charg_button' bindtap="beginCharge" >开始充电</button>
|