feat: 添加我的发行申请状态翻译,优化相关组件显示

This commit is contained in:
2025-12-22 21:36:51 +07:00
parent ef7a833a62
commit 5c4ec4f50d
5 changed files with 45 additions and 1 deletions

View File

@@ -221,6 +221,22 @@
"revenueDetails": "تفاصيل الإيرادات" "revenueDetails": "تفاصيل الإيرادات"
} }
}, },
"myIssues": {
"title": "طلبات الإصدار الخاصة بي",
"search": "بحث",
"list": {
"nameCode": "الاسم/الرمز",
"createdAt": "وقت الإنشاء",
"status": "الحالة"
},
"status": {
"draft": "مسودة",
"under_review": "قيد المراجعة",
"approved": "تمت الموافقة",
"rejected": "مرفوض"
},
"loadMore": "تحميل المزيد"
},
"market": { "market": {
"title": "السوق", "title": "السوق",
"search": { "search": {

View File

@@ -230,6 +230,12 @@
"createdAt": "Created Time", "createdAt": "Created Time",
"status": "Status" "status": "Status"
}, },
"status": {
"draft": "Draft",
"under_review": "Under Review",
"approved": "Approved",
"rejected": "Rejected"
},
"loadMore": "Load More" "loadMore": "Load More"
}, },
"market": { "market": {

View File

@@ -236,6 +236,12 @@
"createdAt": "创建时间", "createdAt": "创建时间",
"status": "状态" "status": "状态"
}, },
"status": {
"draft": "草稿",
"under_review": "待审核",
"approved": "审核通过",
"rejected": "审核拒绝"
},
"loadMore": "加载更多" "loadMore": "加载更多"
}, },
"market": { "market": {

View File

@@ -221,6 +221,22 @@
"revenueDetails": "收益明細" "revenueDetails": "收益明細"
} }
}, },
"myIssues": {
"title": "我的發行申請",
"search": "搜索",
"list": {
"nameCode": "名稱/代碼",
"createdAt": "創建時間",
"status": "狀態"
},
"status": {
"draft": "草稿",
"under_review": "待審核",
"approved": "審核通過",
"rejected": "審核拒絕"
},
"loadMore": "加載更多"
},
"market": { "market": {
"title": "市場", "title": "市場",
"search": { "search": {

View File

@@ -61,7 +61,7 @@ function gotoTradeRwa(id: string) {
</ion-col> </ion-col>
<ion-col> <ion-col>
<div class="text-sm font-bold text-primary text-right"> <div class="text-sm font-bold text-primary text-right">
{{ item.status }} {{ t(`myIssues.status.${item.status}`) }}
</div> </div>
</ion-col> </ion-col>
</ion-row> </ion-row>