index.wxml 944 B

123456789101112131415161718192021222324252627
  1. <view class="popup-mask" wx:if="{{visible}}" catchtouchmove="noop">
  2. <view class="popup-panel">
  3. <view class="popup-header">
  4. <view class="popup-title">申请提现</view>
  5. <view class="popup-close" bindtap="handleCancel">取消</view>
  6. </view>
  7. <view class="popup-body">
  8. <view class="field-title">提现金额(元)</view>
  9. <view class="amount-row">
  10. <text class="yen">¥</text>
  11. <input
  12. class="amount-input"
  13. type="digit"
  14. placeholder="请输入金额,最低 ¥{{withdrawConfig.minwithdrawAmount}}"
  15. value="{{amount}}"
  16. bindinput="handleAmountInput"
  17. />
  18. </view>
  19. <view class="warn">*提现申请后需审核,审核通过后到账微信零钱</view>
  20. <view class="confirm-btn" bindtap="handleConfirm">确认提现</view>
  21. <view class="cancel-btn" bindtap="handleCancel">取消</view>
  22. </view>
  23. </view>
  24. </view>