From ef7a833a62048b5ad436dc46a87daa80b415bb56 Mon Sep 17 00:00:00 2001 From: Seven Date: Mon, 22 Dec 2025 21:32:25 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E8=AE=A2=E9=98=85?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E7=BF=BB=E8=AF=91=EF=BC=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=88=91=E7=9A=84=E7=94=B3=E8=B4=AD=E5=88=97=E8=A1=A8=E7=BB=84?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/ar.json | 4 +++- src/locales/zh-CN.json | 6 ++++++ .../my-subscribe/components/my-subscribe-list.vue | 3 ++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/locales/ar.json b/src/locales/ar.json index 6581d53..f505889 100644 --- a/src/locales/ar.json +++ b/src/locales/ar.json @@ -146,7 +146,9 @@ "productValue": "تقييم المنتج", "enterProductValue": "الرجاء إدخال تقييم المنتج (بالدولار الأمريكي)", "assetProof": "إثبات الأصول", - "enterAssetProof": "الرجاء إدخال إثبات الأصول", "uploadAssetProof": "تحميل مستندات إثبات الأصول", "totalSupplyLimit": "الحد الأقصى لإجمالي الإصدار", + "enterAssetProof": "الرجاء إدخال إثبات الأصول", + "uploadAssetProof": "تحميل مستندات إثبات الأصول", + "totalSupplyLimit": "الحد الأقصى لإجمالي الإصدار", "enterTotalSupplyLimit": "الرجاء إدخال الحد الأقصى لإجمالي الإصدار", "editionName": "اسم فترة الإصدار", "enterEditionName": "الرجاء إدخال اسم فترة الإصدار", diff --git a/src/locales/zh-CN.json b/src/locales/zh-CN.json index 81ebfba..cbeafc0 100644 --- a/src/locales/zh-CN.json +++ b/src/locales/zh-CN.json @@ -125,6 +125,12 @@ "bankManagement": "银行卡管理", "mySubscribe": "我的申购", "myIssues": "我的发行" + }, + "subscribeStatus": { + "pending": "分配中", + "rejected": "已拒绝", + "allocated": "已分配", + "cancelled": "已取消" } }, "asset": { diff --git a/src/views/trade-settings/my-subscribe/components/my-subscribe-list.vue b/src/views/trade-settings/my-subscribe/components/my-subscribe-list.vue index 3083d71..839b91b 100644 --- a/src/views/trade-settings/my-subscribe/components/my-subscribe-list.vue +++ b/src/views/trade-settings/my-subscribe/components/my-subscribe-list.vue @@ -7,6 +7,7 @@ defineProps<{ }>(); const router = useRouter(); +const { t } = useI18n(); function gotoMySubscribe(id: string) { router.push(`/trade-settings/my-subscribe/${id}`); @@ -65,7 +66,7 @@ function gotoMySubscribe(id: string) {
- {{ item.status }} + {{ t(`trade.subscribeStatus.${item.status}`) }}