cashOut.vue 7.5 KB
<template>
	<view class="page">
		<view class="box" style="margin-top: 0;">
			<view  v-if="accountinfok==''">
				<view class='nodata'>请选择提现账户{{accountinfok}}</view>
				<view class="tixianlist flexone">
					<view class="tixianlistitem flexone" :class="sel==1?'selactivek':''" @click="selitem" :data-id="1">
						<view class="tixianimg">
							<image src="../../static/icon_wechat.png"></image>
						</view>
						<view class="tixianname">微信</view>
					</view>
					<view class="tixianlistitem flexone" :class="sel==2?'selactivek':''" @click="selitem" :data-id="2">
						<view class="tixianimg">
							<image src="../../static/icon_zhifu.png"></image>
						</view>
						<view class="tixianname">支付宝</view>
					</view>
					<view class="tixianlistitem flexone" :class="sel==3?'selactivek':''" @click="selitem" :data-id="3">
						<view class="tixianimg">
							<image src="../../static/ticard.png"></image>
						</view>
						<view class="tixianname">银行卡</view>
					</view>
				
				</view>
				
			</view>
			
			
			<view v-else>
				<view class="cardBox" v-if="accountinfok.type!=3">
					<image src="../../static/ticard.png" mode="widthFix" class="logo" />
					<view class="cardInfo">
						<view class="cardTips">提现到钱包</view>
						
					</view>
				</view>
				<view class="cardBox" v-else>
					<image src="accountinfok.image" mode="widthFix" class="logo" />
					<view class="cardInfo">
						<view class="cardTips">提现账户</view>
						<view class="cardName">{{accountinfok.bank_name}}({{accountinfok.card_number}})</view>
					</view>
				</view>
			</view>
			
		</view>
		<view class="box">
			<view class="title">转账金额</view>
			<view class="fillArea">
				<text>¥</text>
				<input type="number" class="fillmoney" @input="emtermoney">
			</view>
			<view class="tipsmoney">当前账户余额{{userinfo.money}}元</view>
		</view>
		
		
		<view class="box">
			<view class="title">提现说明:</view>
			<textarea name="" id="" cols="30" rows="10" class="wordArea" placeholder="提现说明"></textarea>
		</view>
		<view class="submit" @click="applaytiixan">申请提现</view>
	</view>
</template>

<script>
	import app from "../../App.vue";
	
	export default {
		data() {
			return {
				money: '',
				accountinfok: '',
				userinfo:'',
				accountlist:[],
				sel:''
			}
		},
		methods: {
			// 获取账户信息
			//获取账户信息
			getaccount() {
				let that = this;
				var url = 'bank/get_list';
				var params = {
					page: that.page,
					pageNum: 10
				}
				console.log('7766554', params)
				app.post(url, params).then((res) => {
					
					that.accountlist = res.data.data;
					
			
				}).catch((err) => {
					console.log(err)
			
				})
			},
			
			// 选择提现账户
			selitem(e){
				console.log('提现账户提现账户',this.accountlist.length);
				if(this.accountlist.length==0){
					let type=e.currentTarget.dataset.id;
					uni.navigateTo({
						url:'/pages/usercenter/addCard?seltype='+type
					})
				}else{
					uni.navigateTo({
						url: '/pages/usercenter/account'
					})
				}
				
			},
			
			selectaccount() {
				
			},
			// 获取用户信息
			getuserinfo() {
				let that = this;
				var url = 'member/index';
				var params = {
			
				}
				console.log('7766554', params)
				app.post(url, params).then((res) => {
					console.log(res);
					that.userinfo = res.data.data;
				}).catch((err) => {
			
				})
			},
			emtermoney(e) {
				var money;
				if (/^(\d?)+(\.\d{0,2})?$/.test(e.detail.value)) { //正则验证,提现金额小数点后不能大于两位数字
					money = e.detail.value;
				} else {
					money = e.detail.value.substring(0, e.detail.value.length - 1);
				}
				this.money = money
			},
			// 申请提现
			applaytiixan(){
				let that = this;
				if(that.accountinfok==''){
					uni.showToast({
						title:'请选择提现账户',
						icon:'none'
					})
					return false
				}
				if(that.money==''){
					uni.showToast({
						title:'请输入提现金额',
						icon:'none'
					})
					return false
				}
				var url = 'money/withdraw';
				var params = {
					money:that.money,
					bank_id:that.accountinfok.id
				}
				console.log('7766554', params)
				app.post(url, params).then((res) => {
					console.log(res);
					uni.showToast({
						title:"提现成功",
						icon:'none'
					})
					setTimeout(function(){
						uni.navigateBack({
							checked:true
						})
					},1500)		
				}).catch((err) => {
							
				})
			}
			
		},
		onLoad() {
			this.getuserinfo();
			// 获取信息
			this.getaccount()
		},
		
		onShow() {
			 uni.$on('accountinfo',(param) => {
			 	this.accountinfok=param;
				console.log(this.accountinfok)
			 	
			 }) 
			   
		}
	}
</script>

<style>
	
	.tixianlist {
		margin-top: 22rpx;
	}
	
	.tixianlistitem {
		width: 184rpx;
		height: 72rpx;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 16rpx;
		border: 1rpx solid transparent;
	}
	
	.selactivek {
		border: 1rpx solid #C29445;
		border-radius: 8rpx;
	}
	
	.tixianname {
		color: #3D454C;
		font-size: 28rpx;
		margin-left: 8rpx;
	}
	
	.tixianbox {
		padding: 0 40rpx;
		box-sizing: border-box;
	}
	
	.tixiantype {
		color: #3D454C;
		font-size: 28rpx;
	}
	
	.tixianimg {
		width: 48rpx;
		height: 48rpx;
		font-size: 0;
	}
	
	image {
		width: 100%;
		height: 100%;
	}
	.page {
		background: #FEFEFE;
		padding: 32rpx 32rpx 0;
		box-sizing: border-box;
	}
	

	.title {
		font-size: 32rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 600;
		color: rgba(8, 18, 31, 1);
	}

	.box {
		margin-top: 60rpx;
	}

	.userbox {
		width: 686rpx;
		height: 120rpx;
		background: rgba(255, 255, 255, 1);
		box-shadow: 0px 8rpx 24rpx 0px rgba(0, 0, 0, 0.06);
		border-radius: 8rpx;
		display: flex;
		align-items: center;
		font-size: 32rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(8, 18, 31, 1);
		margin-top: 32rpx;
		padding: 0 24rpx;
		box-sizing: border-box;
	}

	.avator {
		width: 72rpx;
		margin-right: 16rpx;
	}

	.fillArea {
		height: 132rpx;
		display: flex;
		align-items: center;
		border-bottom: 1px solid #EAEAEA;
	}

	.fillArea text {
		font-size: 72rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(8, 18, 31, 1);
		margin-right: 16rpx;
	}

	.fillmoney {
		width: 400rpx;
		display: flex;
		align-items: center;
		font-size: 32rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(8, 18, 31, 1);
	}

	.tipsmoney {
		font-size: 24rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(189, 196, 206, 1);
		margin-top: 14rpx;
	}

	.wordArea {
		width: 100%;
		margin-top: 16rpx;
		height: 160rpx;
		font-size: 28rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(61, 69, 76, 1);
	}

	.submit {
		width: 686rpx;
		height: 84rpx;
		background: rgba(194, 148, 69, 1);
		border-radius: 8rpx;
		font-size: 32rpx;
		font-family: PingFangSC-Medium, PingFang SC;
		font-weight: 500;
		color: rgba(255, 255, 255, 1);
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 100rpx auto;
	}

	.cardBox {
		display: flex;
		align-items: center;
		border-bottom: 1px solid #EAEAEA;
		padding-bottom: 32rpx;
	}

	.logo {
		width: 72rpx;
		margin-right: 16rpx;
	}

	.cardInfo {
		width: 596rpx;

	}

	.cardTips {
		font-size: 32rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(8, 18, 31, 1);
	}

	.cardName {
		font-size: 28rpx;
		font-family: PingFangHK-Regular, PingFangHK;
		font-weight: 400;
		color: rgba(8, 18, 31, 1);
		margin-top: 16rpx;
	}
</style>