alternatePopup.wxml 645 B

1234567891011121314151617
  1. <popup show="{{show}}" opacity='5' bindclose="closeTip">
  2. <view class="content">
  3. <view class="ins" bindtap="jumpPage"><text class="icon icon-alternate"></text>候补说明</view>
  4. <view class="title">
  5. <view>该场次名额已售罄,是否进行候补?</view>
  6. <view> 候补失败可全额退款</view>
  7. </view>
  8. <view class="btn-group">
  9. <button class="canclePopup" bindtap="closePopup">取消</button>
  10. <button class="makeSurePopup" bindtap="sub">确认</button>
  11. </view>
  12. <view class="tip">
  13. 系统会按顺序自动分配空出名额,无法保证100%候补成功
  14. </view>
  15. </view>
  16. </popup>