cash.wxml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <view class="bg">
  2. <view class="radish-top">
  3. <view class="wd-list" bindtap="goWithdrawClick">提现记录</view>
  4. <view class="radish-top__title">我的佣金</view>
  5. <view class="radish-top__count">{{balance / 100}}</view>
  6. <view class="radish-top__btn22" bindtap="getBankInfoAndTip">点击提现</view>
  7. <!--<navigator url="/packageUser/pages/user/exchange/exchange" >
  8. <view class="radish-top__btn">兑换佣金</view>
  9. </navigator>-->
  10. <navigator url="/packageUser/pages/user/buy/buy" >
  11. <view class="radish-top__btn1">购买佣金</view>
  12. </navigator>
  13. </view>
  14. <view class="radish-main">
  15. <view class="radish-main__title">交易记录</view>
  16. <view class="radish-main__line" wx:key="{{index}}" bindtap="getDetail" data-val="{{item.id}}" wx:for="{{list}}">
  17. <view class="radish-main__left">
  18. <view class="radish-main__text ellipsis">{{item.source_name}} - {{item.remark}}</view>
  19. <view class="radish-main__time"><format-time type="formatTime" value="{{item.ctime}}" ></format-time></view>
  20. <view class="clean"></view>
  21. </view>
  22. <view class="radish-main__count">{{item.count / 100}}佣金</view>
  23. </view>
  24. </view>
  25. <!-- 确认提现弹框 -->
  26. <view class="fund__modal" wx:if="{{confirmDialog}}" bindtap="closedDialog">
  27. <view class="content">
  28. <image class="image2" src="{{bannerList[0].img}}"></image>
  29. <view class="doing">{{bannerList[0].name}} </view>
  30. <view >剩余 {{balance / 100}}</view>
  31. <view >本次提现金额 {{view_withdraw}},手续费 {{view_fee}}</view>
  32. <view class="continue" bindtap="buyClick">继续赚钱</view>
  33. <view class="withdraw" bindtap="confrimClick">确认提现</view>
  34. </view>
  35. </view>
  36. <!-- 未认证提示弹框 -->
  37. <view class="fund__modal" wx:if="{{identityDialog}}">
  38. <view class="content">
  39. <image class="image1" src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity_bg.png"></image>
  40. <view class="p1">尚未认证身份</view>
  41. <view class="p2">提现前需完成认证操作</view>
  42. <view class="btn">
  43. <view class="noBtn" bindtap="cancelIdentity">暂不认证</view>
  44. <view class="goBtn" bindtap="goIdentityClick">前往认证</view>
  45. <view class="clean"></view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>