| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <view class="bg">
- <view class="radish-top">
- <view class="wd-list" bindtap="goWithdrawClick">提现记录</view>
- <view class="radish-top__title">我的佣金</view>
- <view class="radish-top__count">{{balance / 100}}</view>
- <view class="radish-top__btn22" bindtap="getBankInfoAndTip">点击提现</view>
- <!--<navigator url="/packageUser/pages/user/exchange/exchange" >
- <view class="radish-top__btn">兑换佣金</view>
- </navigator>-->
- <navigator url="/packageUser/pages/user/buy/buy" >
- <view class="radish-top__btn1">购买佣金</view>
- </navigator>
- </view>
- <view class="radish-main">
- <view class="radish-main__title">交易记录</view>
- <view class="radish-main__line" wx:key="{{index}}" bindtap="getDetail" data-val="{{item.id}}" wx:for="{{list}}">
- <view class="radish-main__left">
- <view class="radish-main__text ellipsis">{{item.source_name}} - {{item.remark}}</view>
- <view class="radish-main__time"><format-time type="formatTime" value="{{item.ctime}}" ></format-time></view>
- <view class="clean"></view>
- </view>
- <view class="radish-main__count">{{item.count / 100}}佣金</view>
- </view>
- </view>
-
-
- <!-- 确认提现弹框 -->
- <view class="fund__modal" wx:if="{{confirmDialog}}" bindtap="closedDialog">
- <view class="content">
- <image class="image2" src="{{bannerList[0].img}}"></image>
- <view class="doing">{{bannerList[0].name}} </view>
- <view >剩余 {{balance / 100}}</view>
- <view >本次提现金额 {{view_withdraw}},手续费 {{view_fee}}</view>
- <view class="continue" bindtap="buyClick">继续赚钱</view>
- <view class="withdraw" bindtap="confrimClick">确认提现</view>
- </view>
- </view>
- <!-- 未认证提示弹框 -->
- <view class="fund__modal" wx:if="{{identityDialog}}">
- <view class="content">
- <image class="image1" src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity_bg.png"></image>
- <view class="p1">尚未认证身份</view>
- <view class="p2">提现前需完成认证操作</view>
- <view class="btn">
- <view class="noBtn" bindtap="cancelIdentity">暂不认证</view>
- <view class="goBtn" bindtap="goIdentityClick">前往认证</view>
- <view class="clean"></view>
- </view>
- </view>
- </view>
- </view>
|