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