From f8e9af35a267b7b9a2bf605187a11536889a6e38 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Mon, 20 May 2024 11:00:10 +0800
Subject: [PATCH] 修改:绑定银行卡 多语言

---
 src/page/home/components/GoLogin.vue |   22 ++++++++++++++++++----
 1 files changed, 18 insertions(+), 4 deletions(-)

diff --git a/src/page/home/components/GoLogin.vue b/src/page/home/components/GoLogin.vue
index 259822f..7d78579 100644
--- a/src/page/home/components/GoLogin.vue
+++ b/src/page/home/components/GoLogin.vue
@@ -1,9 +1,9 @@
 <template>
-    <div class="go_to_login">
+    <div class="go_to_login animated bounce">
         <div>
-            <div class="left_mess"><span>{{ '登录后即可开启真实/模拟交易' }}</span></div>
+            <div class="left_mess"><span>{{ $t('dltips') }}</span></div>
             <div class="right_button">
-                <div class="btn" @click="goToLogin()"><span>{{ '登录' }}</span></div>
+                <div class="btn" @click="goToLogin()"><span>{{ $t('dlan') }}</span></div>
             </div>
         </div>
     </div>
@@ -19,7 +19,7 @@
     },
     methods: {
         goToLogin() {
-            this.$router.push('/newLogin')
+            this.$router.push('/login')
         }
     }
 }
@@ -34,6 +34,8 @@
     display: flex;
     align-items: center;
     justify-content: center;
+    
+    
     > div {
         width: 90%;
         height: 100%;
@@ -72,5 +74,17 @@
         }
     }
 }
+//淡入动画
+@keyframes show {
+    0% {
+        
+        buttom:0rem;
+    }
+    100% {
+        
+        buttom:2rem;
+    }
+}
+
 
 </style>

--
Gitblit v1.9.3