withdrawal.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <view class='withdrawal-mian'>
  2. <form class='withdrawal-mian-form'>
  3. <!-- <view class='withdrawal-tab1'>
  4. <text class='withdrawal-tab1-text'>提现账户</text>
  5. <image src='../../images/icon/pay.png'></image>
  6. <text>支付宝</text>
  7. </view> -->
  8. <view class='withdrawal-tab2'>
  9. <text class='withdrawal-tab2-text'>提现金额</text>
  10. <input type='number' placeholder='可提现金额¥{{settledAmount}}' bindinput="onAmountInput" value="{{amount}}"></input>
  11. <text class='withdrawal-tab2-text2' bindtap="onAllWithdraw">全部提现</text>
  12. </view>
  13. <!-- <view class='withdrawal-tab3'>
  14. <text class='withdrawal-tab3-text'>短信验证码</text>
  15. <input type='text' placeholder='请输入验证码'></input>
  16. <view class='line'></view>
  17. <text class='withdrawal-tab3-text2'>获取验证码</text>
  18. </view> -->
  19. <button class='withdrawal-btn' bindtap="confirmWithdraw">确认提现</button>
  20. <!-- 提现tips -->
  21. <view class='rule-block'>
  22. <text class='tip'>1.单次提现额度不得低于{{amountMin}}元</text>
  23. <text class='tip'>2.单次提现额度不得高于{{amountMax}}元</text>
  24. <text class='tip' wx:if="{{frequency==-1}}">3.每个用户每天提现次数无限制</text>
  25. <text class='tip' wx:else>3.每个用户每{{frequency}}天有{{number}}次提现订单的机会</text>
  26. <text class='tip'>4.{{paymentExplain}}</text>
  27. </view>
  28. </form>
  29. </view>