From c6ce6d04621c76e96bdb8e04fe1e0472ececbd79 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Tue, 28 Oct 2025 20:45:55 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=94=B6=E5=85=A5=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E9=A1=B5):=20=E6=96=B0=E5=A2=9E=E7=A1=AE=E8=AE=A4=E5=BC=B9?= =?UTF-8?q?=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/BDCenter/availableIncome.vue | 73 +++++++++++++++++++++++--- 1 file changed, 66 insertions(+), 7 deletions(-) diff --git a/src/views/BDCenter/availableIncome.vue b/src/views/BDCenter/availableIncome.vue index 6a95768..c21968c 100644 --- a/src/views/BDCenter/availableIncome.vue +++ b/src/views/BDCenter/availableIncome.vue @@ -401,6 +401,62 @@ + + + + +
+
+
Tips
+
+ Cash withdrawals require review. Pleasewait patiently for the cash to arrive afterthe + review is passed. +
+
+ Receive +
+
+
+
@@ -412,6 +468,7 @@ import { getBankBalance, userBankTransfer } from '@/api/wallet.js' import { getSelectedPayee, clearSelectedPayee } from '@/utils/payeeStore.js' import { showError, showSuccess } from '@/utils/toast.js' import { setApplyInfo, getApplyInfo } from '@/utils/applyStore.js' +import maskLayer from '@/components/MaskLayer.vue' const router = useRouter() @@ -422,6 +479,8 @@ const selectedCashOutOption = ref(null) const activeAction = ref('Transfer') const loading = ref(false) +const maskLayerShow = ref(false) + // 操作按钮 const actions = ref([{ name: 'Exchange' }, { name: 'Transfer' }, { name: 'Cash out' }]) @@ -434,19 +493,19 @@ const gotoKYC = () => { const CashOut = () => { if (hasBankCard.value) { try { - const resApply = withdrawApply({ ...getApplyInfo(), activityId: activityId }) - if (resApply.status) { - setApplyInfo() - router.go(-1) - } + maskLayerShow.value = true } catch (error) { showError(error.errorMsg) } - } else { - maskLayerShow.value = true } } +// 确认提现 +const Receive = () => { + setApplyInfo() + maskLayerShow.value = false +} + // 选中的收款人 const selectedPayee = reactive({ id: null,