纸通宝SAAS仓库
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.
 

53 lines
2.8 KiB

<!--pages/setting/withdrawal/index.wxml-->
<wxs module="formate" src="../../formate.wxs"></wxs>
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">申请提现</view>
</cu-custom>
<view class="bg-white" style="padding:24rpx;font-size:24rpx;">
<view>提现到账:对私预计两小时内到账,对公预计下一个工作日内到账</view>
<view>提现申请后T+1个工作日到账(周六、周日及节假日顺延到工作日),如有疑问请联系客服<text class="text-blue">400-6881-001</text></view>
</view>
<view style="height:32rpx"></view>
<van-cell is-link bind:click="chooseCard">
<view class="flex flex-justify" slot="title">
<text class="text-sg" style="margin-left:12rpx">到账银行卡</text>
<text class="text-sg" wx:if="{{chooseBankCard.cardId}}">{{chooseBankCard.cardName}}</text>
</view>
</van-cell>
<view class="bg-white" style="padding: 30rpx 0rpx 0rpx 40rpx">
<text class="text-sg text-bold text-black" bindtap="banlanceDetails">提现金额</text>
<view class="cu-form-group" style="border-bottom: 1px solid #f3f3f3;margin-top:24rpx;padding: 2rpx 0rpx">
<view><text style="font-size:50rpx;font-weight: 600; color:black">¥</text></view>
<input type="digit" style="font-size:45rpx;" value="{{expendMoney}}" disabled placeholder="可转出到卡{{sumMoney}}元"></input>
</view>
</view>
<van-cell>
<view class="flex flex-justify" slot="title">
<text class="text-sg" style="margin-left:12rpx">账户余额¥{{formate.formateAmount(sumMoney, 2)}}</text>
<text class="text-sm text-blue" style="margin-left:30rpx" bindtap="allExpend">全部提现</text>
</view>
</van-cell>
<van-cell clickable wx:for="{{orderList}}" wx:key="index" data-index="{{index}}" bind:click="checkList">
<view slot="title" class="flex flex-justify">
<view style="width:100%;flex:1">
<view class="text-sg {{item.status == 0 ? 'text-black': 'text-gray'}}">{{item.type || '代卖业务'}}{{item.status == 1 ? '(提现中)': ''}}</view>
<view class="text-sm {{item.status == 0 ? 'text-black': 'text-gray'}}" style="line-height:30rpx">{{item.createTime}}</view>
</view>
<view class="flex flex-ceter">
<view class="text-sg {{item.status == 0 ? 'text-black': 'text-gray'}}" style="margin-right:24rpx">金额:{{item.money}}元</view>
<van-checkbox value="{{ item.check }}" disabled="{{item.status != 0}}"></van-checkbox>
</view>
</view>
</van-cell>
<submit-layout>
<van-button type="info" custom-style="height:88rpx;width:686rpx" disabled="{{!expendMoney}}" bind:click="checkAmount">申请提现</van-button>
</submit-layout>
<van-dialog id="van-dialog" />
<van-popup position="bottom" show="{{ visible }}" bind:close="onHide" z-index="29">
<van-picker show-toolbar title="选择银行卡" columns="{{ columns }}" bind:cancel="onHide" bind:confirm="onConfirm" />
</van-popup>