diff --git a/src/views/Wallet/CashOut/CashWithdraw.vue b/src/views/Wallet/CashOut/CashWithdraw.vue index 8a72f61..f21e75c 100644 --- a/src/views/Wallet/CashOut/CashWithdraw.vue +++ b/src/views/Wallet/CashOut/CashWithdraw.vue @@ -16,7 +16,7 @@
- +
@@ -58,7 +58,7 @@
- +
@@ -71,7 +71,7 @@ alt="" style="width: 6vw" class="flipImg" - @click="gotoselectBank" + @click="goToSelectBank" />
@@ -144,59 +144,71 @@
- +
-
-
{{ t('kyc') }}
+
+
+
{{ t('kyc') }}
- -
:
+ +
:
- -
- {{ t('review_passed') }} + +
+ {{ t('review_passed') }} +
+ + +
+ {{ t('review_failed') }} +
+ + +
+ {{ t('awaiting_review') }} +
- -
- {{ t('review_failed') }} -
- - -
- {{ t('awaiting_review') }} -
+ +
@@ -213,7 +225,7 @@
{{ t('complete_information') }} -->
@@ -352,7 +364,7 @@ padding: 8px 12px; width: 50%; " - @click="gotoKYC" + @click="goToKYC" > {{ t('receive') }}
@@ -608,8 +620,8 @@ const hasKYC = computed(() => { return bankCardInfo.value != null }) -// 前往选择提交方式 -const gotoselectBank = () => { +// 前往选择银行卡 +const goToSelectBank = () => { router.push('/bank-card') } @@ -619,7 +631,7 @@ const lookDetails = () => { } // 查看历史提现信息 -const gotoKYC = () => { +const goToKYC = () => { router.push('/KYC') }