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.
89 lines
2.5 KiB
89 lines
2.5 KiB
<template>
|
|
<view class="wrap">
|
|
<view class="lf-p-30" style="height: 408rpx;">
|
|
<view class="bg-white lf-h-100" style="border-radius: 10rpx;">
|
|
<view class="text-black lf-font-28 lf-p-l-30 lf-p-t-30">提取金额</view>
|
|
<view class="lf-p-l-20 flex solid-bottom align-center" style="padding-top: 90rpx;">
|
|
<text class="text-black lf-font-48 unit">¥</text>
|
|
<!-- <u-input v-model="num" :type="type" :border="border" :height="height" :auto-height="autoHeight"/> -->
|
|
<input type="number" @focus="showClear()" v-model="num" class="lf-p-l-10 text-black1" style="width: 80%;padding-right: 30rpx;font-size: 72rpx;height: 100rpx;" />
|
|
<view v-if="showClean && num != ''">
|
|
<u-icon @click="clearAble()" name="close-circle" color="#999999" size="40"></u-icon>
|
|
</view>
|
|
</view>
|
|
<view class="lf-font-28 lf-color-999 lf-p-t-26 lf-p-l-30" v-if="num==''">
|
|
可用余额
|
|
<text>¥0.00</text>
|
|
</view>
|
|
<view v-else class="lf-color-price lf-font-28 lf-p-t-26 lf-p-l-30">输入金额超过可用余额</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="lf-p-l-30 lf-p-r-30 lf-p-b-30" style="height: auto;">
|
|
<view class="bg-white lf-h-100 lf-p-30" style="border-radius: 10rpx; box-sizing: border-box;">
|
|
<view class="text-black lf-font-28">提现说明</view>
|
|
<view class="flex flex-direction justify-around lf-p-t-20">
|
|
<view class="lf-font-28" style="color: #555;">
|
|
1、提现到账时间为T+1;
|
|
</view>
|
|
<view class="lf-font-28" style="color: #555;">
|
|
2、提现最高单笔金额为1000元;
|
|
</view>
|
|
<view class="lf-font-28" style="color: #555;">
|
|
3、提现手续费单笔收费10%;
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="btn-bottom" style="bottom: 60rpx;">
|
|
<view class="padding-lr-lg">
|
|
<button class="cu-btn block bg-orange lg" style="border-radius: 42rpx;" @tap="subimitApply()">
|
|
<text class="lf-font-32 text-white">提现</text>
|
|
</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
num: '',
|
|
showClean: false
|
|
}
|
|
},
|
|
methods: {
|
|
clearAble() {
|
|
this.num = ''
|
|
this.showClean = false
|
|
},
|
|
showClear() {
|
|
this.showClean = true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
page{
|
|
background-color: #F5F5F5;
|
|
}
|
|
</style>
|
|
<style scoped>
|
|
.wrap {
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: #F5F5F5;
|
|
}
|
|
.unit{
|
|
display: flex;
|
|
height: 100rpx;
|
|
align-items: flex-end;
|
|
box-sizing: border-box;
|
|
padding-bottom: 10rpx;
|
|
}
|
|
</style>
|