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.
|
|
<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">¥</text> <input type="number" v-model="num" class="lf-p-l-10 text-black1" style="width: 100%;padding-right: 30rpx;font-size: 72rpx;height: 100rpx;" /> </view> <view class="lf-font-28 lf-color-999 lf-p-t-20 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-20 lf-p-l-30">输入金额超过可用余额</view> </view> </view> <view class="lf-p-l-30 lf-p-r-30 lf-p-b-30" style="height: 300rpx;"> <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="flex flex-direction justify-around lf-p-l-30 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="text-df text-white">提现</text> </button> </view> </view> </view></template>
<script> export default { data() { return { num: '' } } }</script>
<style> page{ background-color: #F5F5F5; }</style><style scoped> .wrap { height: 100%; width: 100%; background-color: #F5F5F5; }</style>
|