fund.wxml 3.1 KB

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