1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {{progressPercentage}}{{false}}
- <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.chargStationName}}</text>
- {{chargPile.chargStationId}}
- <text class="h1">{{parkObj.pointShowName}}</text>
- </view>
- </view>
- {{chargPile.address}}
- <text style='line-height:24rpx;height:24rpx;font-size:24rpx;margin-top: 16rpx;' >地址:{{chargPile.address}}</text>
- <text style="line-height:24rpx;height:24rpx;font-size:24rpx;margin: 20rpx 0;">请选择电池包</text>
- <view class="cardHub {{!hid?'hid':''}}" >
- <block wx:for="{{eleList}}" wx:key="*this" >
- <view class="card {{item.active?'':'dis'}}" bindtap="selectEle" data-idx="{{index}}">
- <view class="circleOut">{{index + 1}}</view>
- <view class="main">
- <view style="width:60rpx;height:60rpx;margin: 0 auto;margin-top: 30rpx;">
- <circle-progress name="circle-progress" progress="{{item.currentSoc}}" disabled="{{!item.active}}"/>
- </view>
- <view class="no">编号:{{item.chargPileId}}</view>
- </view>
- <view class="foot">电池包可用
- </view>
- </view>
- </block>
- {{true}}{{15}}{{14}}{{1}}
- </view>
- </view>
- <button wx:if="{{chargPile}}" class="{{car_active?'login_button':'login_button_disable'}}" bindtap="callCar" >呼叫充电车</button>
|