From 4f68b98a8aca50845e4d97d8b40deed0df0c9f75 Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Sun, 31 Mar 2024 15:43:40 +0800
Subject: [PATCH] 注册页面的客服地址错误

---
 src/page/newUser/index.vue |   22 ++++++++++++----------
 1 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/src/page/newUser/index.vue b/src/page/newUser/index.vue
index fc2e14d..3e7f5fd 100644
--- a/src/page/newUser/index.vue
+++ b/src/page/newUser/index.vue
@@ -38,19 +38,21 @@
           </van-col>
         </van-row>
         <van-row style="margin-top: 18px">
-          <div class="van-col van-col--8" style="margin-top: 10px">
-            <div class="content-title DINPro">{{ $t("美股總資產") }}(USD)</div>
-            <div>
-              <div class="DINPro" style="font-size: 18px">
-                <showHide :text="userInfo.usTotalAssets" :flg="xy" />
-              </div>
+          <div
+            class="van-col van-col--8"
+            style="margin-top: 10px"
+            v-for="item in listAsstes"
+            :key="item.accectType"
+          >
+            <div class="content-title DINPro">
+              {{
+                item.accectType === "US" ? $t("美股總資產") : $t("馬股總資產")
+              }}
+              ({{ item.symbolCode }})
             </div>
-          </div>
-          <div class="van-col van-col--8" style="margin-top: 10px">
-            <div class="content-title">{{ $t("馬股總資產") }}(USD)</div>
             <div>
               <div class="DINPro" style="font-size: 18px">
-                <showHide :text="userInfo.masTotalAssets" :flg="xy" />
+                <showHide :text="item.availableBalance" :flg="xy" />
               </div>
             </div>
           </div>

--
Gitblit v1.9.3