12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <view class="popup-mask" wx:if="{{showPopup}}" wx:for="{{occupyFeeOrderList}}" wx:key="id">
- {{occupyFeeOrderList}}
- <view class="popup-content">
-
- <view class="popup-title">占位提醒</view>
-
- <view class='charging_text_title'>
- <view class='charging'>
- <image src='/images/zhangweifei.png'></image>
- </view>
- <view class='charging_text_title1'>
- <text class='bold occupyTest'>{{item.chargstationname}}</text>
- <text class="chargpile occupyTest">{{item.chargpileids}} </text>
- </view>
- </view>
-
- <view class="pile-info">{{item.chargpilename}}</view>
-
- <view class="time-info">
- <view class="info-row">
- <text class="label occupyTest">占位开始时间:</text>
- <text class="value occupyTest">{{item.occupyBeginTime || 0}}</text>
- </view>
- <view class="info-row">
- <text class="label occupyTest">已占位时长:</text>
- <text class="value occupyTest">{{item.occupyTime || 0}}</text>
- </view>
- </view>
-
- <view class="info-row fee-info">
- <text class="label occupyTest">已产生占位费:</text>
- <text class="value occupyTest">{{item.occupyFee || 0}}</text>
- </view>
-
- <view class="warning-text">
- 为避免给您带来更多的经济损失,请充电结束后及时挪车!
- </view>
-
- <button class="confirm-btn" bindtap="handleConfirm">
- 我已知晓,将尽快挪车
- </button>
-
- <view class="contact-link" bindtap="handleContact">联系客服</view>
- </view>
- </view>
|