paymentPopup.wxml 513 B

1234567891011121314
  1. <popup show="{{show}}">
  2. <view class="content">
  3. <view class="article">
  4. <view class="title">该活动中你存在未支付尾款的订单</view>
  5. <view class="info">
  6. <text class="subtitleColor">{{presellPayEndTime}}</text>之后,预付金将会失效
  7. </view>
  8. </view>
  9. <view class="btns">
  10. <button type="warn" plain="true" bindtap="newGroup">继续报名</button>
  11. <button type="warn" bindtap="jumpBalancePayment">支付尾款</button>
  12. </view>
  13. </view>
  14. </popup>