123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <view class="map_text" wx:if="{{order}}" hover-class='active'>
-
- <view class='charging_text_title'>
- <view class='charging'>
- <image src='/images/charging2.png'></image>
- </view>
- <view class='charging_text_title1'>
- <text class='bold'>{{order.chargStation.chargStationName}}</text>
- <text class="h1">{{order.chargPile.chargPileName}}</text>
- </view>
- </view>
- <text>终端编号:{{chargPileId}}</text>
- <view class="table">
- <view class="tr title">
- <view class="th">
- <text>{{startTime}}</text>
- <text>开始充电</text>
- </view>
- <view class="th center">
- <text>——</text>
- </view>
- <view class="th">
- <text>{{endTime}}</text>
- <text>结束充电</text>
- </view>
- </view>
- <view class="tr">
- <view class="td">
- <text>{{order.chargallmoney}}元</text>
- <text>总费用</text>
- </view>
- <view class="td center">
- <text>{{order.chargpower}}度</text>
- <text>总电量</text>
- </view>
- <view class="td">
- <text>{{totalTime}}</text>
- <text>总时长</text>
- </view>
- </view>
- </view>
-
- </view>
- <button class='{{orderFlag?"pay_button1":"pay_button"}}' wx:if="{{order.paystatus==0}}" bindtap="{{orderFlag?'':'payOrder'}}">去支付</button>
- <button class='pay_button' wx:if="{{order.paystatus==1}}" bindtap="closeView">已余额扣款,请关闭</button>
|