From cb27e7df8adaaca47f0847fb5d8daa92b86de1c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A6=86=E9=92=B1=E8=90=BD=E5=B0=BD=E6=A7=BF=E8=8A=B1?= =?UTF-8?q?=E7=A8=80?= <2675540038@qq.com> Date: Sat, 14 Jun 2025 15:51:56 +0800 Subject: [PATCH] 1 --- packageB/wallet/index.vue | 110 +++++++++++++++++++++++++++++++++++--- 1 file changed, 103 insertions(+), 7 deletions(-) diff --git a/packageB/wallet/index.vue b/packageB/wallet/index.vue index 12e9342..f82eaee 100644 --- a/packageB/wallet/index.vue +++ b/packageB/wallet/index.vue @@ -44,7 +44,7 @@ - + {{item.detail.title}} @@ -62,7 +62,7 @@ style="background: #E6EEFF;width: 90rpx;height: 32rpx;border-radius: 4rpx 4rpx 4rpx 4rpx;text-align: center;margin: 0 auto;margin-top: 20rpx;"> 待入账 - 已入账 @@ -70,7 +70,7 @@ - + @@ -86,7 +86,7 @@ +{{item.real_price}} +{{item.real_have_price}} - 审核中 @@ -94,14 +94,14 @@ style="background: #F8EAEA;width: 90rpx;height: 32rpx;border-radius: 4rpx 4rpx 4rpx 4rpx;text-align: center;margin: 0 auto;"> 失败 - 已打款 - 打款中 - + --> + + 提现到账说明 + + + 提现金额 + ¥{{ txInfo.real_price }} + + + 跨行/跨银行手续费 + ¥{{ txInfo.bank_fee}} + + + 备注: + + + {{txInfo.remark}} + + + 实际到账金额 + ¥{{ txInfo.real_have_price}} + + + + + 关闭 + 我已知晓 + + + + + 提现到账说明 + + + 活动收入金额 + ¥{{ qbInfo.order_price }} + + + 平台手续费({{ qbInfo.fee_scale*100 }}%) + ¥{{ qbInfo.fee_price}} + + + 计算方式: + + + [ 活动订单总金额x{{ qbInfo.fee_scale*100 }}%(平台费率)=待入账金额 ] + + + 实际入账金额 + ¥{{ qbInfo.settle_price}} + + + + + 关闭 + 我已知晓 + + + @@ -188,6 +266,12 @@ export default { data() { return { + txInfo:{}, + txShow:false, + + qbShow:false, + qbInfo:{}, + tipsShowTwo:false, tipsShowOne:false, tabIndex: 0, @@ -223,6 +307,18 @@ } }, methods: { + inTx(item){ + if(item.withdrawal_status==3){ + this.txShow = true; + this.txInfo = item; + } + }, + qbIn(item){ + if(item.status==3){ + this.qbShow = true; + this.qbInfo = item; + } + }, openTab(index) { this.loadStatus = 'loading'; this.page = 1;