纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

56 lines
3.3 KiB

<!--pages/withdrawal/checkout/index.wxml-->
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">申请提现</view>
</cu-custom>
<view class="bg-white text-yellow" style="padding:24rpx;font-size:24rpx;">
<view>提现额度:对私100万/天,对公1000万/天</view>
<view>提现到账:对私预计两小时内到账,对公预计下一个工作日内到账</view>
</view>
<view style="height:24rpx"></view>
<wux-cell-group>
<wux-cell title="选择银行卡" is-link bind:click="chooseCard">
<text slot="footer" class="text-df text-black" wx:if="{{chooseBankCard}}">{{chooseBankCard.cardName}}</text>
</wux-cell>
</wux-cell-group>
<view class="bg-white" style="padding:24rpx 30rpx;margin-top:24rpx">
<text class="text-sg text-bold text-black">提现金额</text>
<view class="cu-form-group" style="margin-top:24rpx;padding: 2rpx 0rpx;border-bottom:2rpx solid #f3f3f3">
<view><text style="font-size:50rpx;font-weight: 600; color:black">¥</text></view>
<input style="font-size:45rpx;margin-left:16rpx" value="{{expendMoney}}" placeholder="可转出到卡{{sumMoney}}元" disabled="{{true}}"></input>
<!-- <text class="text-df text-blue" style="margin-left:30rpx" wx:if="{{orderList.length}}" bindtap="allExpend">全部提现</text> -->
</view>
<view class="flex flex-justify" style="margin-top:18rpx;">
<text class="text-df">账户余额¥{{formate.numberFormat2(xsaccountMoney)}}</text>
<text class="text-df text-blue" style="margin-left:30rpx" wx:if="{{orderList.length}}" bindtap="allExpend">全部提现</text>
</view>
</view>
<view style="padding:24rpx;font-size:24rpx;">
提现申请后T+1个工作日到账(周六、周日及节假日顺延到工作日),如有疑问请联系客服<text class="text-blue">400-6881-001</text>
</view>
<wux-cell-group>
<wux-cell hover-class="none" wx:for="{{orderList}}" wx:key="index" data-index="{{index}}" bind:click="checkList">
<view slot="header" style="padding: 8rpx 0rpx">
<view class="text-sg {{item.status == 0 ? 'text-black': 'text-gray'}}">{{item.title}}{{item.status == 1 ? '(提现中)': ''}}</view>
<view class="text-sm {{item.status == 0 ? 'text-black': 'text-gray'}}" style="margin-top:4rpx">{{item.createTime}}</view>
</view>
<view slot="footer" class="flex flex-center">
<view class="text-sg {{item.status == 0 ? 'text-black': 'text-gray'}}" style="margin-right:16rpx">{{item.money}}</view>
<!-- <view class="cuIcon-roundcheck text-blue" style="font-size: 20px" wx:if="{{item.check}}"></view> -->
<image style="width:40rpx;height:40rpx;" src="/assets/image/ico_checked.png" wx:if="{{item.check}}"></image>
<image style="width:40rpx;height:40rpx;" src="/assets/image/ico_check.png" wx:elif="{{item.status == 0}}"></image>
<image style="width:40rpx;height:40rpx;" src="/assets/image/ico_uncheck.png" wx:else></image>
</view>
</wux-cell>
</wux-cell-group>
<view style="height:{{ 136 + safeBottom}}rpx"></view>
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding: 32rpx 32rpx {{safeBottom + 32}}rpx 32rpx;">
<view style="width:100%">
<wux-button block type="positive" bind:click="checkoutAmount" disabled="{{requesting}}">申请提现</wux-button>
</view>
</view>
<select-view id="picker-view" bindcustomevent="onPickerChange"></select-view>
<wux-dialog id="wux-dialog" />