fund.wxml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <view>
  2. <view class="fund-head">
  3. <view class="title">可提现金额(元) <image class="withdrawIcon" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/icon/tiny_logo5.png" bindtap="goWithdrawClick"></image></view>
  4. <view class="price"><currency symbol=" " value="{{cashTotal.available}}" ></currency></view>
  5. <view class="fund__btnAll">
  6. <view class="fund__btn withdraw" bindtap="getBankInfoAndTip" wx:if="{{cashTotal.available}}">提现</view>
  7. <view class="fund__btn withdrawNot" wx:if="{{!cashTotal.available}}">暂无提现</view>
  8. <!--<view class="fund__btn recharge" bindtap="goRechargeClick">充值</view>-->
  9. <view class="clean"></view>
  10. </view>
  11. <view wx:if="{{false}}">
  12. <view class="btn" bindtap="getBankInfoAndTip" wx:if="{{cashTotal.available}}">点击提现</view>
  13. <view class="not" wx:if="{{!cashTotal.available}}">暂无提现</view>
  14. </view>
  15. <view class="total">累积收入已达<currency symbol=" " value="{{cashTotal.total}}" ></currency>元</view>
  16. </view>
  17. <view class="granary-no" wx:if="{{!cashList.length}}">
  18. <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/unorders.png" class="granary-no__icon"></image>
  19. <view class="granary-no__text">暂无收入</view>
  20. </view>
  21. <view class="fund-list" wx:if="{{cashList.length}}">
  22. <view class="fund-info" wx:key="{{index}}" wx:for="{{cashList}}">
  23. <view class="fund-goods">
  24. <view class="name">【{{item.source_name}}】{{item.remark}}</view>
  25. <view class="clean"></view>
  26. </view>
  27. <view class="price" wx:if="{{item.count > 0}}"><currency symbol="+" value="{{item.count}}" ></currency>元</view>
  28. <view class="price green" wx:if="{{item.count < 0}}"><currency symbol="" value="{{item.count}}" ></currency>元</view>
  29. <view class="time"><format-time type="formatTime1" value="{{item.c_time}}" ></format-time></view>
  30. <view class="clean"></view>
  31. </view>
  32. </view>
  33. <!-- 确认提现弹框 -->
  34. <view class="fund__modal" wx:if="{{confirmDialog}}" bindtap="closedDialog">
  35. <view class="content">
  36. <image class="image2" src="{{bannerList[0].img}}"></image>
  37. <view class="doing">{{bannerList[0].name}} </view>
  38. <view class="continue" bindtap="buyClick">继续赚钱</view>
  39. <view class="withdraw" bindtap="confrimClick">确认提现</view>
  40. </view>
  41. </view>
  42. <!-- 未认证提示弹框 -->
  43. <view class="fund__modal" wx:if="{{identityDialog}}">
  44. <view class="content">
  45. <image class="image1" src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity_bg.png"></image>
  46. <view class="p1">尚未认证身份</view>
  47. <view class="p2">提现前需完成认证操作</view>
  48. <view class="btn">
  49. <view class="noBtn" bindtap="cancelIdentity">暂不认证</view>
  50. <view class="goBtn" bindtap="goIdentityClick">前往认证</view>
  51. <view class="clean"></view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>