2025-01-02 18:04:30 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<u-navbar :custom-back="btnback" title="余额提现" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000"
|
|
|
|
|
title-size='36' height='50'></u-navbar>
|
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/ubc5U4uFnwbrbJZCbkfT" class="imgbj" mode=""></image>
|
|
|
|
|
<view class="cont">
|
|
|
|
|
<view class="top_box">
|
|
|
|
|
<view class="tip">账户余额(元)</view>
|
|
|
|
|
<view class="txt">
|
2025-03-12 17:06:06 +08:00
|
|
|
|
¥{{user.balance == null ? 0 : user.balance}} (<text style="font-size: 24rpx;">可提现金额</text>¥{{user.withdrawalAmount == null ? 0 : user.withdrawalAmount}})
|
2025-01-02 18:04:30 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="tip" style="display: flex;justify-content: space-between;">
|
2025-02-12 17:59:03 +08:00
|
|
|
|
<text>累计提现:¥{{user.totalWithdrawAmount == null ? 0 : user.totalWithdrawAmount}}</text>
|
2025-01-02 18:04:30 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tit">
|
|
|
|
|
<view class="" style="display: flex;">
|
|
|
|
|
<view class="tit_line" style="margin-top: 4rpx;"></view>
|
|
|
|
|
余额提现
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="input_box">
|
|
|
|
|
<view class="yuan">
|
|
|
|
|
¥
|
|
|
|
|
</view>
|
|
|
|
|
<view class="ipt">
|
2025-03-12 17:06:06 +08:00
|
|
|
|
<u-input v-model="money" type="number" @input="inputs" placeholder='输入自定义金额'
|
2025-01-02 18:04:30 +08:00
|
|
|
|
placeholder-style='font-size: 24rpx;' />
|
|
|
|
|
</view>
|
2025-03-12 17:06:06 +08:00
|
|
|
|
<view class="altx" @click="btnmoney">
|
2025-01-02 18:04:30 +08:00
|
|
|
|
全部提现
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-02-12 17:59:03 +08:00
|
|
|
|
<view class="" style="color: red;font-size: 24rpx;padding-top: 30rpx;box-sizing: border-box;" v-if="shouxuobj != ''">
|
2025-03-12 17:06:06 +08:00
|
|
|
|
提现服务费为 ¥{{shouxuprice.toFixed(2)}} 最低提现¥{{shouxuobj.minAmount == null ? '' : shouxuobj.minAmount}} 最高提现¥{{shouxuobj.maxAmount == null ? '' : shouxuobj.maxAmount}}
|
2025-01-02 18:04:30 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="tit">
|
|
|
|
|
<view class="" style="display: flex;">
|
|
|
|
|
<view class="tit_line" style="margin-top: 4rpx;">
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
提现方式
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="pay_type" style="width: 100%;">
|
2025-02-12 17:59:03 +08:00
|
|
|
|
<view class="type_box" v-for="(item,index) in qudaolist" :key="index" @click="btntxxz(item,index)">
|
2025-01-02 18:04:30 +08:00
|
|
|
|
<view class="box_left">
|
2025-02-12 17:59:03 +08:00
|
|
|
|
<image :src="item.picture" mode="aspectFit"></image>
|
2025-01-02 18:04:30 +08:00
|
|
|
|
<view class="text">
|
2025-02-12 17:59:03 +08:00
|
|
|
|
{{item.name}}提现
|
2025-01-02 18:04:30 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="box_right" :class="currentindex==index?'act1':''">
|
|
|
|
|
<span v-if="currentindex==index" style="color: #fff;"> <u-icon style="margin-top: 22rpx;"
|
2025-02-12 17:59:03 +08:00
|
|
|
|
name="checkbox-mark" color="#fff" size="28"></u-icon> </span>
|
2025-01-02 18:04:30 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-02-12 17:59:03 +08:00
|
|
|
|
<view class="btn" @click="btntx">
|
|
|
|
|
申请提现
|
2025-01-02 18:04:30 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
bgc: {
|
|
|
|
|
backgroundColor: "",
|
|
|
|
|
},
|
2025-02-12 17:59:03 +08:00
|
|
|
|
user:{},
|
|
|
|
|
qudaolist:[],
|
|
|
|
|
currentindex:-1,
|
|
|
|
|
shouxuobj:'',
|
2025-03-05 17:42:13 +08:00
|
|
|
|
money:'',
|
2025-03-12 17:06:06 +08:00
|
|
|
|
id:'',
|
|
|
|
|
shouxuprice:''
|
2025-01-02 18:04:30 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2025-02-12 17:59:03 +08:00
|
|
|
|
onLoad(option) {
|
|
|
|
|
this.getinfo()
|
|
|
|
|
this.getqudao(option.userId)
|
|
|
|
|
},
|
2025-03-05 17:42:13 +08:00
|
|
|
|
onShow() {
|
2025-01-02 18:04:30 +08:00
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2025-03-12 17:06:06 +08:00
|
|
|
|
btnmoney(){
|
|
|
|
|
this.money = this.user.withdrawalAmount
|
|
|
|
|
if(this.shouxuobj.handlingChargeType == 1){
|
|
|
|
|
this.shouxuprice = this.shouxuobj.withdrawHandlingCharge / 10 * this.money
|
|
|
|
|
}else{
|
|
|
|
|
this.shouxuprice = this.shouxuobj.withdrawHandlingCharge
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
inputs(e){
|
|
|
|
|
if(this.shouxuobj.handlingChargeType == 1){
|
|
|
|
|
this.shouxuprice = this.shouxuobj.withdrawHandlingCharge / 10 * this.money
|
|
|
|
|
}else{
|
|
|
|
|
this.shouxuprice = this.shouxuobj.withdrawHandlingCharge
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-02-12 17:59:03 +08:00
|
|
|
|
// 点击进行提现
|
|
|
|
|
btntx(){
|
|
|
|
|
if(this.shouxuobj.collectionCode == null && this.shouxuobj.name == '线下收款码'){
|
2025-03-05 17:42:13 +08:00
|
|
|
|
let that = this
|
2025-02-12 17:59:03 +08:00
|
|
|
|
uni.showModal({
|
|
|
|
|
title: '提示',
|
|
|
|
|
content: '当前暂无收款码,是否去上传?',
|
|
|
|
|
success: function(res) {
|
|
|
|
|
if (res.confirm) {
|
|
|
|
|
try {
|
|
|
|
|
uni.navigateTo({
|
2025-03-05 17:42:13 +08:00
|
|
|
|
url:'/page_fenbaotwo/skzh?userWithdrawChannelId=' + that.id
|
2025-02-12 17:59:03 +08:00
|
|
|
|
})
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.error('删除本地存储时发生错误:', e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
let data = {
|
|
|
|
|
amount:this.money,
|
|
|
|
|
userWithdrawChannelId:this.shouxuobj.userChannelId
|
|
|
|
|
}
|
|
|
|
|
this.$u.post(`app/withdraw/mch`,data).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '申请成功',
|
|
|
|
|
icon: 'success',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
this.getinfo()
|
|
|
|
|
}else{
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 点击选择提现方式
|
|
|
|
|
btntxxz(item,index){
|
2025-03-05 17:42:13 +08:00
|
|
|
|
this.id = item.userChannelId
|
2025-02-12 17:59:03 +08:00
|
|
|
|
this.currentindex = index
|
|
|
|
|
this.shouxuobj = item
|
2025-03-12 17:06:06 +08:00
|
|
|
|
if(item.handlingChargeType == 1){
|
|
|
|
|
this.shouxuprice = item.withdrawHandlingCharge / 10 * this.money
|
|
|
|
|
}else{
|
|
|
|
|
this.shouxuprice = item.withdrawHandlingCharge
|
|
|
|
|
}
|
2025-02-12 17:59:03 +08:00
|
|
|
|
},
|
|
|
|
|
// 获取个人信息
|
|
|
|
|
getinfo(){
|
|
|
|
|
this.$u.get(`/getAppInfo`).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.user = res.user
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取提现渠道列表
|
|
|
|
|
getqudao(userId){
|
|
|
|
|
this.$u.get(`/app/withdraw/getUserWithdrawChannelList?userId=${userId}`).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.qudaolist = res.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-01-02 18:04:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
/deep/ .u-flex {
|
|
|
|
|
padding-top: 20rpx !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ .u-title {
|
|
|
|
|
padding-bottom: 22rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ .u-icon__icon {
|
|
|
|
|
padding-bottom: 22rpx;
|
|
|
|
|
}
|
|
|
|
|
.imgbj {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 552rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
border-radius: 0 0 50rpx 50rpx;
|
|
|
|
|
}
|
|
|
|
|
.mask{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
opacity: .5;
|
|
|
|
|
}
|
|
|
|
|
.fengk{
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
padding: 40rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
image{
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 782rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.yuany{
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
margin-bottom: 34rpx;
|
|
|
|
|
}
|
|
|
|
|
.jief{
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
width: 670rpx;
|
|
|
|
|
margin-bottom: 82rpx;
|
|
|
|
|
}
|
|
|
|
|
.tijiao{
|
|
|
|
|
width: 670rpx;
|
|
|
|
|
height: 108rpx;
|
|
|
|
|
background: #4C97E7;
|
|
|
|
|
border-radius: 59rpx 59rpx 59rpx 59rpx;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
margin-bottom: 72rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 108rpx;
|
|
|
|
|
}
|
|
|
|
|
.motijiao{
|
|
|
|
|
width: 670rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 44rpx;
|
|
|
|
|
color: #4C97E7;
|
|
|
|
|
margin-bottom: 40rpx;
|
|
|
|
|
}
|
|
|
|
|
.yuany,
|
|
|
|
|
.jief,
|
|
|
|
|
.motijiao,
|
|
|
|
|
.tijiao{
|
|
|
|
|
z-index: 99 !important;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
page {
|
|
|
|
|
background: #F7FAFE;
|
|
|
|
|
}
|
|
|
|
|
.addtj {
|
|
|
|
|
margin-top: 44rpx;
|
|
|
|
|
width: 646rpx;
|
|
|
|
|
height: 88rpx;
|
|
|
|
|
background: #E4E3FB;
|
|
|
|
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
|
|
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 88rpx;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #48893B;
|
|
|
|
|
}
|
|
|
|
|
.cont {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 634rpx;
|
|
|
|
|
.top_box {
|
|
|
|
|
padding: 28rpx 32rpx;
|
|
|
|
|
margin-top: 38rpx;
|
|
|
|
|
width: 634rpx;
|
|
|
|
|
height: 246rpx;
|
|
|
|
|
background: #48893B;
|
|
|
|
|
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: 100rpx;
|
|
|
|
|
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: #48893B;
|
|
|
|
|
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: #48893B;
|
|
|
|
|
line-height: 72rpx;
|
|
|
|
|
}
|
|
|
|
|
.ipt {
|
|
|
|
|
width: 60%;
|
|
|
|
|
}
|
|
|
|
|
.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: #48893B;
|
|
|
|
|
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: #48893B;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.btn {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 590rpx;
|
|
|
|
|
height: 84rpx;
|
|
|
|
|
background: #48893B;
|
|
|
|
|
border-radius: 40rpx;
|
|
|
|
|
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #FFFFFF;
|
2025-02-12 17:59:03 +08:00
|
|
|
|
position: fixed;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
bottom: 50rpx;
|
2025-01-02 18:04:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|