12345678910111213141516171819202122232425262728293031323334353637 |
- <navbar parameter='{{parameter}}'></navbar>
- <view class='wrapper'>
- <view hidden='{{currentTab != 1}}' class='list'>
- <form bindsubmit="subCash" report-submit='true'>
- <view class='item acea-row row-between-wrapper'>
- <view class='name'>姓名</view>
- <view class='input'><input placeholder='请填写您的姓名' placeholder-class='placeholder' name="name"></input></view>
- </view>
- <view class='item acea-row row-between-wrapper'>
- <view class='name'>微信号</view>
- <view class='input'><input placeholder='请填写您的微信账号' placeholder-class='placeholder' name="weixin"></input></view>
- </view>
- <view class='item acea-row row-between-wrapper'>
- <view class='name'>手机号</view>
- <view class='input'><input placeholder='请填写您的手机号' placeholder-class='placeholder' name="phone"></input></view>
- </view>
- <view class='bonus item '>
- <view class='name'>提现奖金</view>
- <view class='input'>
- <view class="bonus_icon">¥</view>
- <input placeholder='在此输入提现奖金' placeholder-class='placeholder' name="money" type='digit' value="{{tipdata}}"></input>
- </view>
- </view>
- <view class='tip'>当前可提现金额:¥{{userInfo.brokerage_price}} <text bindtap="Alltip" class="alltip" >全部提现</text> </view>
- <button formType="submit" class='bnt bg-color'>提现</button>
- <navigator class="record" url="/pages/user_spread_money/index?type=1">提现记录</navigator>
- <view class="record_p">预计3个工作日内到账,请及时检查确认</view>
- <view class="record_a">
- <view class="record_p1">提现说明</view>
- <view class="record_p2">1、提现账款会在3个工作日内发放,并将直接到账绑定的指定账户;</view>
- <view class="record_p2">2、根据监管要求,未实名认证用户不能进行提现操作。</view>
- </view>
- </form>
- </view>
- </view>
- <authorize bind:onLoadFun='onLoadFun'></authorize>
|