scan_result.wxml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <!--pages/scan_result/scan_result.wxml-->
  2. <view wx:if="{{chargPile}}" class="map_text" hover-class='active' >
  3. <scroll-view class='context' scroll-y='true' >
  4. <!-- <view class="map-1" bindtap="getRoute">
  5. <image src="/images/jt.png"></image>
  6. <view>路线</view>
  7. </view> -->
  8. <view class='charging_text_title'>
  9. <view class='charging'>
  10. <image src='/images/charging2_1.png'></image>
  11. </view>
  12. <view class='charging_text_title1'>
  13. <text class='bold'>{{chargPile.chargPileName}}</text>
  14. <text class="h1">终端编号:{{chargPile.chargPileId}}</text>
  15. </view>
  16. </view>
  17. <!-- <text style='margin-bottom:10rpx;'>地址:{{chargPile.address}}</text> -->
  18. <rich-text space='nbsp' nodes="地址:{{chargPile.address}}" style='line-height:30rpx;font-size:24rpx;margin-bottom:10rpx;word-wrap: break-word;' ></rich-text>
  19. <!-- <text class='fast' wx:if="{{chargPile.pileType=='快充'}}">快桩:2小时</text>
  20. <text class='slow' wx:if="{{chargPile.pileType=='慢充'}}">慢桩:2小时</text> -->
  21. <text class="inline">时段参考费用:</text>
  22. <view class="rtable">
  23. <view class="rtr" style="font-size: 28rpx;">
  24. <view class="rtd t1">时段</view>
  25. <view class="rtd t2">电费</view>
  26. <view class="rtd t2">服务费</view>
  27. <view class="rtd t2">总费用</view>
  28. </view>
  29. <block wx:for="{{resultTable}}" wx:key="*this">
  30. <view wx:if="{{item.currentTime}}" class="rtr active" >当前费用</view>
  31. <view class="rtr {{item.currentTime?'active':''}}" >
  32. <view class="rtd t1">{{item.startTimeStr}} - {{item.endTimeStr}}</view>
  33. <view class="rtd t2">{{item.elecPrice}}{{item.elecPrice=='暂无费用'?'':'元'}}</view>
  34. <view class="rtd t2">{{item.servicePrice}}{{item.servicePrice=='暂无费用'?'':'元'}}</view>
  35. <view class="rtd t2">{{item.sumPrice}}{{item.sumPrice=='暂无费用'?'':'元'}}</view>
  36. </view>
  37. </block>
  38. </view>
  39. <!-- <view style="height:40rpx;width:100%"> </view> -->
  40. <!--
  41. <text class="inline">实时参考费用:</text>
  42. <view style='line-height:0;'>
  43. <rich-text space='nbsp' nodes="电 费:{{chargPile.chargprice}}元 服务费:{{chargPile.serviceprice}}元 总费用:{{chargPile.totalprice}}元" style='line-height:30rpx;font-size:24rpx;margin-bottom:10rpx;word-wrap: break-word;' ></rich-text>
  44. </view>
  45. <text class="inline">参考价格:</text>
  46. <view style='line-height:0;'>
  47. <rich-text space='nbsp' nodes="服务费:尖峰{{chargPile.sharpServicePrice}}元 高峰{{chargPile.peakServicePrice}}元 平段{{chargPile.flatServicePrice}}元 低谷{{chargPile.valleyServicePrice}}元 " style='line-height:30rpx;font-size:24rpx;color:#a3a3a3;margin-bottom:10rpx;word-wrap: break-word;'></rich-text>
  48. </view>
  49. <view style='line-height:0;margin-bottom:10rpx'>
  50. <rich-text space="nbsp" nodes="电 费:尖峰{{chargPile.sharpChargPrice}}元 高峰{{chargPile.peakChargPrice}}元 平段{{chargPile.flatChargPrice}}元 低谷{{chargPile.valleyChargPrice}}元 " style='line-height:30rpx;font-size:24rpx;margin-bottom:10rpx;word-wrap: break-word;'></rich-text>
  51. </view>
  52. <view style='line-height:0;'>
  53. <rich-text space='nbsp' nodes="总费用:尖峰{{chargPile.sharpTotalPrice}}元 高峰{{chargPile.peakTotalPrice}}元 平段{{chargPile.flatTotalPrice}}元 低谷{{chargPile.valleyTotalPrice}}元 " style='line-height:30rpx;font-size:24rpx;color:red;margin-bottom:10rpx;word-wrap: break-word;'></rich-text>
  54. </view>
  55. <view style="margin-bottom:10rpx;margin-top:10rpx">
  56. <rich-text style='line-height:30rpx;word-break:break-all;color: #575757;font-size:26rpx;'><span style="font-weight:bold;color:#000">北京地区</span>峰谷时段划分如下所示(如有峰谷差异电价,详情请咨询场站现场负责人):</rich-text>
  57. </view>
  58. <view style='line-height:0;'>
  59. <text decode='true' style='font-size:24rpx;color:#a3a3a3;margin-bottom:10rpx;'>高峰:10:00-15:00&nbsp;&nbsp;18:00-21:00</text>
  60. </view>
  61. <view style='line-height:0;'>
  62. <text decode='true' style='font-size:24rpx;color:#a3a3a3;margin-bottom:10rpx;'>平段:07:00-10:00&nbsp;&nbsp;15:00-18:00&nbsp;&nbsp;21:00-23:00</text>
  63. </view>
  64. <view style='line-height:0;'>
  65. <text decode='true' style='font-size:24rpx;color:#a3a3a3;margin-bottom:10rpx;'>低谷:23:00至次日07:00</text>
  66. </view>
  67. <view style='line-height:0;'>
  68. <text decode='true' style='font-size:24rpx;color:#a3a3a3;margin-bottom:10rpx;'>尖峰:7\8月11:00-13:00&nbsp;&nbsp;16:00-17:00</text>
  69. </view>
  70. -->
  71. <!--
  72. <view wx:if="{{chargPile.showinfo}}">
  73. <rich-text style='line-height:48rpx;color:red;font-size:32rpx;word-break:break-all;'>信息展现:{{chargPile.showinfo}}</rich-text>
  74. </view> -->
  75. <view wx:if="{{chargPile.showinfo}}" style='margin-top:10rpx;'>
  76. <rich-text style='line-height:36rpx;color:#1D9BF7;font-size:30rpx;word-break:break-all;font-weight: bold;'>{{chargPile.showinfo}}</rich-text>
  77. </view>
  78. <view style='margin-top:10rpx;'>
  79. <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>
  80. </view>
  81. <!-- <text style='line-height:48rpx;color:red;font-size:32rpx;'>2</text> -->
  82. <view style='margin-top:10rpx;'>
  83. <rich-text style='line-height:36rpx;color:#1D9BF7;font-size:30rpx;word-break:break-all;'>充电即减免 <text class="richHourNum">{{repaidbalance}}</text>小时停车费。请您确认入场车辆与启动充电时录入的车牌信息保持一致,如录入不一致将无法享受充电减免停车费优惠。</rich-text>
  84. </view>
  85. <button wx:if="{{chargPile}}" class='charg_button' bindtap="beginCharge" >开始充电</button>
  86. </scroll-view>
  87. </view>
  88. <!-- <view style="width: 100%;margin-top:50rpx">
  89. <ad unit-id="adunit-8eb13875bcf592b0" ad-intervals="30"></ad>
  90. </view> -->