outmoney.wxml 792 B

12345678910111213
  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. <button class='{{checkPass?"outmoney_button":"outmoney_button_disable"}}' bindtap="{{checkPass?'beginOutMoney':''}}" >立即提现(转入微信账户)</button>