From c790779e2c578d892e184932c660023eb4d466aa Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Tue, 26 Mar 2024 23:40:20 +0800
Subject: [PATCH] 注册页面的客服地址错误

---
 src/page/newUser/index.vue |   44 ++++++++++++++++++++++++++------------------
 1 files changed, 26 insertions(+), 18 deletions(-)

diff --git a/src/page/newUser/index.vue b/src/page/newUser/index.vue
index d9a71c6..2c747d6 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="24">
             <div class="content-all">
-              <span>賬戶總資產(USD)</span>
+              <span>{{ $t("賬戶總資產") }}(USD)</span>
               <i @click="xy = !xy" class="iconfont xy">&#xe8c7;</i>
             </div>
             <div class="number-all">
@@ -39,7 +39,7 @@
         </van-row>
         <van-row style="margin-top: 18px">
           <div class="van-col van-col--8" style="margin-top: 10px">
-            <div class="content-title DINPro">美股總資產(USD)</div>
+            <div class="content-title DINPro">{{ $t("美股總資產") }}(USD)</div>
             <div>
               <div class="DINPro" style="font-size: 18px">
                 <showHide :text="userInfo.usTotalAssets" :flg="xy" />
@@ -47,7 +47,15 @@
             </div>
           </div>
           <div class="van-col van-col--8" style="margin-top: 10px">
-            <div class="content-title">馬股總資產(USD)</div>
+            <div class="content-title">{{ $t("馬股總資產") }}(USD)</div>
+            <div>
+              <div class="DINPro" style="font-size: 18px">
+                <showHide :text="userInfo.masTotalAssets" :flg="xy" />
+              </div>
+            </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" />
@@ -61,7 +69,7 @@
               @click="$router.push('/recharge')"
               class="btn-two"
               type="primary"
-              >充值</van-button
+              >{{ $t("hj172") }}</van-button
             >
           </van-col>
           <van-col span="8" style="display: flex; justify-content: center">
@@ -69,7 +77,7 @@
               @click="$router.push('/RechargeSure')"
               class="btn-two"
               type="default"
-              >提款</van-button
+              >{{ $t("提款") }}</van-button
             >
           </van-col>
           <!-- transferIndex -->
@@ -78,7 +86,7 @@
               @click="$router.push('/transferIndex')"
               class="btn-two"
               type="default"
-              >劃轉</van-button
+              >{{ $t("hj245") }}</van-button
             >
           </van-col>
           <!-- <van-col span="6" style="display: flex; justify-content: center">
@@ -139,7 +147,7 @@
 import { Toast, MessageBox } from "mint-ui";
 import { isNull, pwdReg } from "@/utils/utils";
 import showHide from "@/components/showHide";
-import Vue from "Vue";
+import Vue from "vue";
 export default {
   name: "newUser",
   components: { showHide },
@@ -149,32 +157,32 @@
       xy: true,
       listAsstes: [
         {
-          title: "美股資產",
-          title1: "美股可用",
-          title2: "美股冻结",
+          title: this.$t("美股資產"),
+          title1: this.$t("美股可用"),
+          title2: this.$t("美股冻结"),
           accectType: "US",
           symbol: "$",
           symbolCode: "USD",
         },
         {
-          title: "印股資產",
-          title1: "印股可用",
-          title2: "印股冻结",
+          title: this.$t("印股資產"),
+          title1: this.$t("印股可用"),
+          title2: this.$t("印股冻结"),
           accectType: "IN",
           symbol: "RM",
           symbolCode: "MYR",
         },
         {
-          title: "馬股資產",
-          title1: "馬股可用",
-          title2: "馬股冻结",
+          title: this.$t("馬股資產"),
+          title1: this.$t("馬股可用"),
+          title2: this.$t("馬股冻结"),
           accectType: "MAS",
           symbol: "RM",
           symbolCode: "MYR",
         },
       ],
-      active: "美股資產",
-      name: "大狗子",
+      active: this.$t("美股資產"),
+      name: "",
       selectUserFlag: true,
       settingDialog: false,
       oldPassword: "", // 旧密码

--
Gitblit v1.9.3