| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <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/recharge/recharge" >
- <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="https://cfohow.hiwavo.com/xcx/user/withdraw_confirm_banner.png"></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="{{transferConfirmDialog}}">
- <view class="content transfer-content">
- <view class="doing transfer-title">确认后将转入微信零钱</view>
- <view class="transfer-actions">
- <view class="transfer-btn transfer-cancel" bindtap="cancelTakeCashTransfer">取消</view>
- <view class="transfer-btn transfer-confirm" bindtap="confirmTakeCashTransfer">确认</view>
- <view class="clean"></view>
- </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>
|