12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <view class="map_text" wx:if="{{order}}" 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'>{{order.chargPile.chargPileName}}</text>
- <text class="h1">终端编号:{{chargPileId}}</text>
- </view>
- </view>
- <text>地址:{{order.chargStation.address}}</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>
|