12345678910111213141516171819202122232425 |
- <view class="content">
- <uni-notice-bar bind:__l="__l" single="true" text="每月25号到月底可提现上月结算余额" vueId="3ccd025e-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="转入金额" placeholderClass="placeholder" type="number" value="{{withdrawal}}"></input>
- <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'e0',['$event'] ] ] ] ]}}">全部转账</view>
- </view>
- </view>
- <button bindtap="__e" class="{{['add-btn up',loding?'action':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'e1',['$event'] ] ] ] ]}}">转入</button>
- </view>
|