From 410baea0e0e5a74350adc5291cf23cb79ad30daa Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Thu, 10 Jul 2025 14:36:06 +0800
Subject: [PATCH] 11

---
 src/page/newUser/index.vue |   42 +++++++++++++++++++++---------------------
 1 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/page/newUser/index.vue b/src/page/newUser/index.vue
index 33dbbec..5d11904 100644
--- a/src/page/newUser/index.vue
+++ b/src/page/newUser/index.vue
@@ -29,7 +29,7 @@
         <van-row class="van-row-box">
           <van-col span="20">
             <div class="content-all">
-              <span>{{ $t("賬戶總資產") }}({{ $USD }})</span>
+              <span>{{ $t("賬戶總資產") }}(¥)</span>
               <i @click="xy = !xy" class="iconfont xy">&#xe8c7;</i>
             </div>
             <div class="number-all">
@@ -128,7 +128,7 @@
                 <div class="li-USDT">
                   <div class="DINPro">
                     {{ item.symbol }}
-                    {{ item.availableBalance | _toLocaleString }}
+                    {{ item.availableBalance   }}
                   </div>
                   <!-- <div class="DINPro">
                     ≈ $ {{ item.availableBalanceUSD || "0.00" }}
@@ -142,7 +142,7 @@
                 <div class="li-USDT">
                   <div class="DINPro">
                     {{ item.symbol }}
-                    {{ item.freezeMoney | _toLocaleString }}
+                    {{ item.freezeMoney   }}
                   </div>
                   <!-- <div class="DINPro">≈ $ {{ item.freezeMoney || "0.00" }}</div> -->
                 </div>
@@ -154,7 +154,7 @@
                 <div class="li-USDT">
                   <div class="DINPro">
                     {{ item.symbol }}
-                    {{ item.amountToBeCovered | _toLocaleString }}
+                    {{ item.amountToBeCovered   }}
                   </div>
                   <!-- <div class="DINPro">≈ $ {{ item.freezeMoney || "0.00" }}</div> -->
                 </div>
@@ -229,16 +229,16 @@
       xy: true,
       listAsstes: [
         {
-          title: this.$t("印股資產"),
-          title3: this.$t("印股總資產"),
-          title1: this.$t("印股可用"),
-          title2: this.$t("印股冻结"),
-          accectType: "IN",
-          symbolCode: "INR",
-          symbol: "₹",
+          title: this.$t("日股資產"),
+          title3: this.$t("日股總資產"),
+          title1: this.$t("日股可用"),
+          title2: this.$t("日股冻结"),
+          accectType: "JP",
+          symbolCode: "JPY",
+          symbol: "¥",
         },
       ],
-      active: this.$t("印股資產"),
+      active: this.$t("日股資產"),
       name: "",
       selectUserFlag: true,
       settingDialog: false,
@@ -299,16 +299,16 @@
     },
     onChange(e) {
       this.language = e;
-      this.active = this.$t("印股資產")
+      this.active = this.$t("日股資產")
       this.listAsstes=[
         {
-          title: this.$t("印股資產"),
-          title3: this.$t("印股總資產"),
-          title1: this.$t("印股可用"),
-          title2: this.$t("印股冻结"),
-          accectType: "IN",
-          symbolCode: "INR",
-          symbol: "₹",
+          title: this.$t("日股資產"),
+          title3: this.$t("日股總資產"),
+          title1: this.$t("日股可用"),
+          title2: this.$t("日股冻结"),
+          accectType: "JP",
+          symbolCode: "JPY",
+          symbol: "¥",
         },
       ]
       this.iconlist = [{
@@ -422,7 +422,7 @@
           });
         });
 
-        const arr = data.data.filter((item) => item.accectType === "IN");
+        const arr = data.data.filter((item) => item.accectType === "JP");
         this.asstesAll = arr[0].totalMoney;
       }
     },

--
Gitblit v1.9.3