From f15ad3456b47e43646234b9c91c3ddd77ab2cd02 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Wed, 05 Jun 2024 10:05:13 +0800
Subject: [PATCH] 123
---
src/page/newUser/index.vue | 33 +++++++++++++++++++++++++++------
1 files changed, 27 insertions(+), 6 deletions(-)
diff --git a/src/page/newUser/index.vue b/src/page/newUser/index.vue
index 16d4633..91a8eb3 100644
--- a/src/page/newUser/index.vue
+++ b/src/page/newUser/index.vue
@@ -39,15 +39,13 @@
</van-row>
<van-row style="margin-top: 18px">
<div
- class="van-col van-col--8"
+ class="van-col van-col--12"
style="margin-top: 10px"
v-for="item in listAsstes"
:key="item.accectType"
>
<div class="content-title DINPro">
- {{
- item.accectType === "US" ? $t("美股總資產") : $t("馬股總資產")
- }}
+ {{ item.title3 }}
({{ item.symbolCode }})
</div>
<div>
@@ -152,6 +150,7 @@
listAsstes: [
{
title: this.$t("美股資產"),
+ title3: this.$t("美股總資產"),
title1: this.$t("美股可用"),
title2: this.$t("美股冻结"),
accectType: "US",
@@ -160,6 +159,7 @@
},
{
title: this.$t("馬股資產"),
+ title3: this.$t("馬股總資產"),
title1: this.$t("馬股可用"),
title2: this.$t("馬股冻结"),
accectType: "MAS",
@@ -168,11 +168,30 @@
},
{
title: this.$t("港股资产"),
+ title3: this.$t("港股總資產"),
title1: this.$t("港股可用"),
title2: this.$t("港股冻结"),
accectType: "HK",
symbol: "HK$",
symbolCode: "HKD",
+ },
+ {
+ title: this.$t("印股资产"),
+ title3: this.$t("印股總資產"),
+ title1: this.$t("印股可用"),
+ title2: this.$t("印股冻结"),
+ accectType: "IN",
+ symbol: "₹",
+ symbolCode: "IND",
+ },
+ {
+ title: this.$t("日股资产"),
+ title3: this.$t("日股总资产"),
+ title1: this.$t("日股可用"),
+ title2: this.$t("日股冻结"),
+ accectType: "JP",
+ symbol: "¥",
+ symbolCode: "JPN",
},
],
active: this.$t("美股資產"),
@@ -263,7 +282,7 @@
if (data.status === 0) {
this.onlineService = data.data.onlineService;
} else {
- Toast(data.msg);
+ // Toast(data.msg);
}
},
goWall() {
@@ -491,6 +510,8 @@
color: #2d2f3c;
}
.li-USDT {
+ min-width: 180px;
+ text-align: right;
font-style: normal;
font-weight: 500;
font-size: 0.37333rem;
@@ -993,4 +1014,4 @@
input[type="file"] {
display: none !important;
}
-</style>
\ No newline at end of file
+</style>
--
Gitblit v1.9.3