From 74caffbab49258b3e5167361426759bacc0ec0ef Mon Sep 17 00:00:00 2001 From: Seven Date: Wed, 14 Jan 2026 11:09:45 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E2=80=9C=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E9=93=B6=E8=A1=8C=E8=B4=A6=E6=88=B7=E2=80=9D=E7=BF=BB?= =?UTF-8?q?=E8=AF=91=E6=94=AF=E6=8C=81=E8=87=B3=E9=98=BF=E6=8B=89=E4=BC=AF?= =?UTF-8?q?=E8=AF=AD=E3=80=81=E8=8B=B1=E8=AF=AD=E3=80=81=E7=AE=80=E4=BD=93?= =?UTF-8?q?=E4=B8=AD=E6=96=87=E5=92=8C=E7=B9=81=E4=BD=93=E4=B8=AD=E6=96=87?= =?UTF-8?q?=EF=BC=88=E9=A6=99=E6=B8=AF=EF=BC=89=EF=BC=8C=E5=B9=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E7=9B=B8=E5=85=B3=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/ar.json | 1 + src/locales/en-US.json | 1 + src/locales/zh-CN.json | 1 + src/locales/zh-HK.json | 1 + src/views/withdraw/index.vue | 12 +++++++++--- 5 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/locales/ar.json b/src/locales/ar.json index d2d1080..91c5b40 100644 --- a/src/locales/ar.json +++ b/src/locales/ar.json @@ -153,6 +153,7 @@ "enterAmountMax": "أدخل المبلغ (الحد الأقصى: {amount})", "validAmountError": "الرجاء إدخال مبلغ صحيح.", "bankAccountId": "الحساب البنكي", + "selectBankAccount": "اختر الحساب البنكي", "enterBankAccountId": "أدخل الحساب البنكي", "validBankAccountError": "الرجاء إدخال حساب بنكي صحيح.", "chooseChain": "اختر السلسلة", diff --git a/src/locales/en-US.json b/src/locales/en-US.json index 6ea6354..aced3b7 100644 --- a/src/locales/en-US.json +++ b/src/locales/en-US.json @@ -153,6 +153,7 @@ "enterAmountMax": "Enter amount (Max: {amount})", "validAmountError": "Please enter a valid amount.", "bankAccountId": "Bank Account", + "selectBankAccount": "Select Bank Account", "enterBankAccountId": "Enter bank account", "validBankAccountError": "Please enter a valid bank account.", "chooseChain": "Choose Chain", diff --git a/src/locales/zh-CN.json b/src/locales/zh-CN.json index 301f680..c62c24a 100644 --- a/src/locales/zh-CN.json +++ b/src/locales/zh-CN.json @@ -153,6 +153,7 @@ "enterAmountMax": "请输入金额(最大可用:{amount})", "validAmountError": "请输入有效的金额。", "bankAccountId": "银行账户", + "selectBankAccount": "选择银行账户", "enterBankAccountId": "请输入银行账户", "validBankAccountError": "请输入有效的银行账户。", "chooseChain": "选择链", diff --git a/src/locales/zh-HK.json b/src/locales/zh-HK.json index 5359675..8d5b8b7 100644 --- a/src/locales/zh-HK.json +++ b/src/locales/zh-HK.json @@ -153,6 +153,7 @@ "enterAmountMax": "請輸入金額(最大可用:{amount})", "validAmountError": "請輸入有效的金額。", "bankAccountId": "銀行賬戶", + "selectBankAccount": "選擇銀行賬戶", "enterBankAccountId": "請輸入銀行賬戶", "validBankAccountError": "請輸入有效的銀行賬戶。", "chooseChain": "選擇鏈", diff --git a/src/views/withdraw/index.vue b/src/views/withdraw/index.vue index 9d6ccc2..bebf72e 100644 --- a/src/views/withdraw/index.vue +++ b/src/views/withdraw/index.vue @@ -3,6 +3,7 @@ import type { GenericObject } from "vee-validate"; import type { BankAccountsData, WithdrawBody } from "@/api/types"; import type { FormInstance } from "@/utils"; import { loadingController, modalController, toastController } from "@ionic/vue"; +import { chevronForwardOutline } from "ionicons/icons"; import { ErrorMessage, Field, Form } from "vee-validate"; import { client, safeClient } from "@/api"; import { AssetCodeEnum, ChainEnum, WithdrawMethodEnum } from "@/api/enum"; @@ -118,7 +119,7 @@ async function onSubmit(values: GenericObject) { {{ value }} - + @@ -155,13 +156,18 @@ async function onSubmit(values: GenericObject) { class="flex items-center justify-between bg-faint rounded-2xl p-4 cursor-pointer" @click="openSelectBankAccount" > -
+
{{ currentBankAccount?.bankCode }}
{{ currentBankAccount?.bankName }}
- +
+ + {{ t('withdraw.selectBankAccount') }} + +
+