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,