| 123456789101112131415161718192021222324252627 |
- <view class="popup-mask" wx:if="{{visible}}" catchtouchmove="noop">
- <view class="popup-panel">
- <view class="popup-header">
- <view class="popup-title">申请提现</view>
- <view class="popup-close" bindtap="handleCancel">取消</view>
- </view>
- <view class="popup-body">
- <view class="field-title">提现金额(元)</view>
- <view class="amount-row">
- <text class="yen">¥</text>
- <input
- class="amount-input"
- type="digit"
- placeholder="请输入金额,最低 ¥{{withdrawConfig.minwithdrawAmount}}"
- value="{{amount}}"
- bindinput="handleAmountInput"
- />
- </view>
- <view class="warn">*提现申请后需审核,审核通过后到账微信零钱</view>
- <view class="confirm-btn" bindtap="handleConfirm">确认提现</view>
- <view class="cancel-btn" bindtap="handleCancel">取消</view>
- </view>
- </view>
- </view>
|