| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <view>
- <view class="fund-head">
- <view class="title">可提现金额(元) <image class="withdrawIcon" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/icon/tiny_logo5.png" bindtap="goWithdrawClick"></image></view>
- <view class="price"><currency symbol=" " value="{{cashTotal.available}}" ></currency></view>
- <view class="fund__btnAll">
- <view class="fund__btn withdraw" bindtap="getBankInfoAndTip" wx:if="{{cashTotal.available}}">提现</view>
- <view class="fund__btn withdrawNot" wx:if="{{!cashTotal.available}}">暂无提现</view>
- <view class="fund__btn recharge" bindtap="goRechargeClick">充值</view>
-
- <!-- <view class="fund__btn withdraw" bindtap="toTransfer" wx:if="{{cashTotal.can_transfer}}" disabled="{{cashTotal.available}}">转提货券</view> -->
- <view class="clean"></view>
- </view>
- <view wx:if="{{false}}">
- <view class="btn" bindtap="getBankInfoAndTip" wx:if="{{cashTotal.available}}">点击提现</view>
- <view class="not" wx:if="{{!cashTotal.available}}">暂无提现</view>
- </view>
-
- <view class="total">累积收入已达<currency symbol=" " value="{{cashTotal.total}}" ></currency>元</view>
- </view>
- <view class="granary-no" wx:if="{{!cashList.length}}">
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/unorders.png" class="granary-no__icon"></image>
- <view class="granary-no__text">暂无收入</view>
- </view>
- <view class="fund-list" wx:if="{{cashList.length}}">
- <view class="fund-info" wx:key="{{index}}" wx:for="{{cashList}}">
- <view class="fund-goods">
- <view class="name">【{{item.source_name}}】{{item.remark}}</view>
- <view class="clean"></view>
- </view>
- <view class="price" wx:if="{{item.count > 0}}"><currency symbol="+" value="{{item.count}}" ></currency>元</view>
- <view class="price green" wx:if="{{item.count < 0}}"><currency symbol="" value="{{item.count}}" ></currency>元</view>
- <view class="time"><format-time type="formatTime1" value="{{item.c_time}}" ></format-time></view>
- <view class="clean"></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 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>
|