outmoney.wxml 894 B

1234567891011121314151617
  1. <!--pages/outmoney/outmoney.wxml-->
  2. <view class='money_input'>
  3. <text>提现金额(元)</text>
  4. <input placeholder-class="section_phcolor" bindinput='outMoney' focus="true" type='digit' placeholder="请输入提现金额,不低于0.3元" />
  5. </view>
  6. <view class="outmoney"><text>可用余额{{userInfo.repaidbalance}}元</text></view>
  7. <view class='money_input'>
  8. <text>备注</text>
  9. <picker class="picker" bindchange="bindRemarkChange" value="{{remarkArrayIndex}}" range-key="text" range="{{remarkArray}}">
  10. <text>{{remarkArrayIndex==null?'请选择':remarkArray[remarkArrayIndex].text}}</text>
  11. </picker>
  12. </view>
  13. <!-- <view style="width: 100%;margin-top:50rpx">
  14. <ad unit-id="adunit-8eb13875bcf592b0" ad-intervals="30"></ad>
  15. </view> -->
  16. <button class='{{checkPass?"outmoney_button":"outmoney_button_disable"}}' bindtap="{{checkPass?'beginOutMoney':''}}" >立即提现</button>