withdrawal.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!--pages/withdrawal/withdrawal.wxml-->
  2. <view class="container">
  3. <view class="message">
  4. 钱包余额{{moneyBalance}}元,可提现{{can_draw}}元
  5. </view>
  6. <view class="money">
  7. <view class="money-content">
  8. <view class="money-content-title">提款金额</view>
  9. <view class="money-content-input">
  10. <view class="input">
  11. <text>¥</text>
  12. <input value="{{money}}" placeholder="0.00" placeholder-style="color:#999999" bindblur="changeMoney" bindinput="show"></input>
  13. </view>
  14. <view class="all">
  15. <text bindtap="all">全部提现</text>
  16. <image src="/images/happyjob/clear.png" class="all-icon" bindtap="clear"></image>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="hint">
  21. 提现金额只能输入10的整倍数
  22. </view>
  23. </view>
  24. <view class="pay-method">
  25. <view class="method {{active_index === '1'&&'border'}}" data-index="1" bindtap="choose">
  26. <image class="wechat" src="/images/happyjob/wechatpay.png"></image>
  27. <text class="pay-text">微信钱包</text>
  28. <image class="choose-pay" src="/images/happyjob/choose-pay.png" hidden="{{active_index !== '1'}}"></image>
  29. </view>
  30. <view class="method {{active_index === '2'&&'border'}}" data-index="2" bindtap="choose">
  31. <image class="alipay" src="/images/happyjob/alipay.png"></image>
  32. <text class="pay-text">支付宝余额</text>
  33. <image class="choose-pay" src="/images/happyjob/choose-pay.png" hidden="{{active_index !== '2'}}"></image>
  34. </view>
  35. </view>
  36. <view class="button {{money&&'background'}}" bindtap="withdrawal">
  37. 预计两小时内到账,确认提现
  38. </view>
  39. </view>