1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <view class="content">
- <uni-notice-bar bind:__l="__l" single="true" text="每月25号到月底可提现上月结算余额" vueId="1f6d1c66-1"></uni-notice-bar>
- <view class="content-money">
- <view class="flex ">
- <view class="buttom">
- <view class="icon">{{$root.f0}}</view>
- <text class="text">可提现佣金</text>
- </view>
- <view class="interval"></view>
- <view class="buttom">
- <view class=" icon">{{$root.f1}}</view>
- <text class="text">待审核提现佣金</text>
- </view>
- </view>
- </view>
- <view class="row-box">
- <view class="title">提现金额</view>
- <view class="row">
- <text class="tit">¥</text>
- <input bindinput="__e" class="input" data-event-opts="{{[ [ 'input',[ [ '__set_model',[ '','withdrawal','$event',[] ] ] ] ] ]}}" placeholder="{{'最低提现金额'+minPrice+'元'}}" placeholderClass="placeholder" type="number" value="{{withdrawal}}"></input>
- <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'e0',['$event'] ] ] ] ]}}">全部提现</view>
- </view>
- </view>
- <view class="row-box">
- <view class="title">手续费</view>
- <view class="row">
- <text class="tit">¥</text>
- <view class="placeholder">{{withdrawal*0.01*charge}}</view>
- </view>
- </view>
- <view class="list">
- <radio-group bindchange="__e" data-event-opts="{{[ [ 'change',[ [ 'tabRadio',['$event'] ] ] ] ]}}">
- <label>
- <view class="box">
- <view class="icon iconfont iconweixin1"></view>
- <view class="title-box">
- <view class="title">
- <text>提现至微信</text>
- </view>
- </view>
- <view class="right">
- <radio checked="{{type=='weixin'}}" color="#5dbc7c" value="weixin"></radio>
- </view>
- </view>
- </label>
- <label>
- <view class="box" wx:if="{{show==1}}">
- <view class="icon iconfont iconzhifubao"></view>
- <view class="title-box">
- <view class="title">
- <text wx:if="{{aliData.fullname}}">提现至支付宝</text>
- <text wx:else>请创建支付宝账号</text>
- </view>
- <view class="node">
- <text wx:if="{{aliData.fullname}}">{{'真实姓名('+aliData.fullname+')'}}</text>
- </view>
- </view>
- <view class="right">
- <radio checked="{{type=='alipay'}}" color="#5dbc7c" value="alipay"></radio>
- </view>
- </view>
- </label>
- <label>
- <view class="box" wx:if="{{show==1}}">
- <view class="icon iconfont">
- <image class="icon-img" mode="aspectFit" src="/static/icon/i8.png"></image>
- </view>
- <view class="title-box">
- <view class="title">
- <text wx:if="{{bankData.bankno}}">{{bankData.bank+' '+bankData.bankno}}</text>
- <text wx:else>请创建银行账号</text>
- </view>
- <view class="node">
- <text wx:if="{{bankData.fullname}}">{{'真实姓名('+bankData.fullname+')'}}</text>
- </view>
- </view>
- <view class="right">
- <radio checked="{{type=='bank'}}" color="#5dbc7c" value="bank"></radio>
- </view>
- </view>
- </label>
- </radio-group>
- </view>
- <button bindtap="__e" class="add-btn up" data-event-opts="{{[ [ 'tap',[ [ 'confirm',['$event'] ] ] ] ]}}">提交申请</button>
- <block wx:if="{{show==1}}">
- <button bindtap="__e" class="add-btn modified" data-event-opts="{{[ [ 'tap',[ [ 'navTo',['/pages/wallet/account'] ] ] ] ]}}">账号管理</button>
- </block>
-
- </view>
|