123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <view class="popup-mask" wx:if="{{showPopup}}" wx:for="{{occupyOrder}}" wx:key="id">
- <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'>{{item.chargstationname}}</text>
- <text class="chargpile">{{item.chargpileids}} </text>
- </view>
- </view>
-
- <view class="pile-info">{{item.chargpilename}}</view>
-
- <view class="time-info">
- <view class="info-row">
- <text class="label">占位开始时间:</text>
- <text class="value">{{item.occupyBeginTime || 0}}</text>
- </view>
- <view class="info-row">
- <text class="label">已占位时长:</text>
- <text class="value">{{item.occupyTime || 0}}</text>
- </view>
- </view>
-
- <view class="info-row fee-info">
- <text class="label">已产生占位费:</text>
- <text class="value">{{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>
|