kaiguan-zfb/page_user/yetx.vue
2024-07-29 18:03:40 +08:00

417 lines
9.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<u-navbar title="余额提现" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<view class="cont">
<view class="top_box">
<view class="tip">账户余额()</view>
<view class="txt">
{{userinfo.balance == undefined ? '' : userinfo.balance}}
</view>
<view class="tip">累计提现{{userinfo.withDrawlAmount == undefined ? '' : userinfo.withDrawlAmount}}</view>
</view>
<view class="tit">
<view class="" style="display: flex;">
<view class="tit_line" style="margin-top: 4rpx;"></view>
余额提现
</view>
<view class="" style="color: #8883f0;" @click="btntxrecord">
提现记录
</view>
</view>
<view class="input_box">
<view class="yuan">
</view>
<view class="ipt">
<u-input v-model="money" @input="change" placeholder='输入自定义金额' placeholder-style='font-size: 24rpx;'/>
</view>
<view class="altx" @click="all()">
全部提现
</view>
</view>
<view class="" style="color: red;font-size: 24rpx;padding-top: 30rpx;box-sizing: border-box;">
提现服务费为 ¥{{serviceRates}}
</view>
<view class="tit">
<view class="" style="display: flex;">
<view class="tit_line" style="margin-top: 4rpx;">
</view>
提现方式
</view>
</view>
<view class="pay_type">
<view class="type_box" @click="pay(0,'1')">
<view class="box_left">
<image src="https://api.ccttiot.com/smartmeter/img/static/unexnRfQ1HxdA3GuVgfX" mode=""></image>
<view class="text">
微信提现
</view>
</view>
<view class="box_right" :class="currentindex==0?'act1':''">
<span v-if="currentindex==0" style="color: #fff;"> <u-icon style="margin-top: 22rpx;" name="checkbox-mark" color="#fff" size="28"></u-icon> </span>
</view>
</view>
<!-- <view class="type_box" @click="pay(1,'3')">
<view class="box_left">
<image style="border-radius: 50%;" src="https://api.ccttiot.com/smartmeter/img/static/umHaHtYaD540zBB7NXQ7" mode=""></image>
<view class="text">
银行卡提现
</view>
</view>
<view class="box_right" :class="currentindex==1?'act1':''">
<span v-if="currentindex==1" style="color: #fff;"> <u-icon style="margin-top: 22rpx;" name="checkbox-mark" color="#fff" size="28"></u-icon> </span>
</view>
</view> -->
<!-- <view class="type_box" @click="pay(1,'2')">
<view class="box_left">
<image src="https://api.ccttiot.com/smartmeter/img/static/uRsKrUoCa4XXCKyIMTwb" mode=""></image>
<view class="text">
支付宝提现
</view>
</view>
<view class="box_right" :class="currentindex==1?'act1':''">
<span v-if="currentindex==1"> √</span>
</view>
</view> -->
<!-- <view class="type_box" v-for="(item,index) in infoList.BANK_CARD" :key="index" @click="pay(index+2,'3',item.accountNo)">
<view class="box_left">
<image :src="'http://bkaear.market.alicloudapi.com/banklogo/' + item.cardInfo.Icon" mode=""></image>
<view class="text">
{{item.cardInfo.bankName}}
</view>
</view>
<view class="box_right" :class="currentindex==index+2?'act1':''">
<span v-if="currentindex==index+2"> √</span>
</view>
</view> -->
</view>
<view class="btn" @click="sub()">
确认提现
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#8883f0",
},
name:'',
idnum:'',
money:'',
infoList:{},
currentindex:0,
payType:1,
accountNo:'',
userinfo:{},
serviceType:'',
serviceRate:'',
serviceRates:'',
sjmeoey:''
}
},
onShow() {
this.getfuwu()
this.getinfo()
this.getuserinfo()
},
// 分享到好友(会话)
onShareAppMessage: function () {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function () {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
methods: {
change(){
if(this.serviceType == 2){
this.serviceRates = this.serviceRate
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}else{
let qian = this.money * this.serviceRate / 100
this.serviceRates = qian
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}
},
// 跳转到提现记录
btntxrecord(){
uni.navigateTo({
url:'/page_user/txrecord'
})
},
getinfo(){
this.$u.get('/app/account' ).then((res) => {
if (res.code == 200) {
console.log(res)
this.infoList=res.data
}
})
},
pay(index,type,id){
this.currentindex=index
this.payType=type
if(type==3){
this.accountNo=id
}else{
this.accountNo=''
}
},
all(){
this.money=this.userinfo.balance
if(this.serviceType == 2){
this.serviceRates = this.serviceRate
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}else{
let qian = this.money * this.serviceRate / 100
this.serviceRates = qian
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
}
},
// 获取提现服务费
getfuwu(){
this.$u.get('/app/bill/getWithdrawService?channelId=1').then((res) => {
if (res.code == 200) {
this.serviceType = res.data.serviceType
this.serviceRate = res.data.serviceRate
if(this.serviceType == 2){
this.serviceRates = this.serviceRate
}else{
this.serviceRates = 0
}
}
})
},
sub(){
if(this.money<20){
uni.showToast({
title: '提现金额不能低于20元',
icon: 'none',
duration: 2000
});
}else if (this.money>this.userinfo.balance){
uni.showToast({
title: '提现金额不能大于余额',
icon: 'none',
duration: 2000
});
}else{
let data ={
money:this.money,
arrivalAmount:this.sjmeoey,
serviceCharge:this.serviceRates,
channelId:1,
serviceRate:this.serviceRate , //服务费
serviceType:this.serviceType //服务费收取方式
}
this.$u.post('/app/bill/withdraw',data).then((res) => {
if (res.code == 200) {
this.getuserinfo()
uni.showToast({
title: '提现成功',
icon: 'none',
duration: 2000
});
}
})
}
},
getuserinfo() {
this.$u.get("/app/user/userInfo").then((res) => {
// this.$forceUpdate()
if (res.code == 200) {
this.userinfo=res.data
this.money = ''
// console.log(this.userinfo);
}
});
},
}
}
</script>
<style lang="scss" >
/deep/ .u-title{
padding-bottom: 22rpx;
}
/deep/ .u-icon__icon{
padding-bottom: 22rpx;
}
page{
background: #F7FAFE;
}
.cont{
display: flex;
// justify-content: center;
flex-wrap: wrap;
margin: 0 auto;
width: 634rpx;
.top_box{
padding: 28rpx 32rpx;
margin-top: 38rpx;
width: 634rpx;
height: 246rpx;
background: #8883F0;
border-radius: 28rpx 28rpx 28rpx 28rpx;
border-radius: 20rpx;
.tip{
font-weight: 400;
font-size: 28rpx;
color: #FFFFFF;
line-height: 38rpx;
}
.txt{
margin-top: 28rpx;
margin-bottom: 28rpx;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
line-height: 54rpx;
}
}
.tit{
margin-top: 38rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
font-weight: 500;
font-size: 28rpx;
color: #3D3D3D;
line-height: 38rpx;
display: flex;
justify-content: space-between;
width: 100%;
.tit_line{
margin-right: 12rpx;
width: 4rpx;
height: 32rpx;
background: #8883F0;
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
}
.input_box{
display: flex;
flex-wrap: nowrap;
align-items: center;
margin-top: 36rpx;
width: 634rpx;
height: 86rpx;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42,130,228,0.1);
border-radius: 20rpx;
.yuan{
margin-left: 36rpx;
font-weight: 500;
font-size: 52rpx;
color: #8883F0;
line-height: 72rpx;
}
.ipt{
width: 60%;
// .u-input::placeholder {
// font-size: 20px;
// color: red;
// }
}
.altx{
display: flex;
align-items: center;
justify-content: center;
width: 158rpx;
height: 56rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0,0,0,0.2);
border-radius: 12rpx 12rpx 12rpx 12rpx;
font-weight: 400;
font-size: 28rpx;
color: #8883F0;
line-height: 38rpx;
}
}
.pay_type{
.type_box{
width: 100%;
margin-top: 26rpx;
display: flex;
align-items: center;
flex-wrap: nowrap;
width: 634rpx;
height: 86rpx;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42,130,228,0.1);
border-radius: 20rpx;
.box_left{
display: flex;
align-items: center;
flex-wrap: nowrap;
margin-left:22rpx ;
image{
width: 50rpx;
height: 50rpx;
}
.text{
margin-left: 30rpx;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
line-height: 44rpx;
}
}
.box_right{
display: flex;
align-items: center;
justify-content: center;
margin-left: auto;
margin-right: 34rpx;
width: 44rpx;
height: 44rpx;
border: 2rpx solid #444444 ;
border-radius: 50%;
}
.act1{
color: #FFFFFF;
background-color: #8883F0;
}
}
}
.btn{
margin-left: 20rpx;
display: flex;
align-items: center;
justify-content: center;
margin-top: 218rpx;
width: 590rpx;
height: 84rpx;
background: #8883f0;
border-radius: 40rpx;
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
font-weight: 400;
font-size: 36rpx;
color: #FFFFFF;
}
}
</style>