From 349c48e168b9f2580334422228acde7d1b21bede Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Fri, 05 Jun 2026 11:19:15 +0800
Subject: [PATCH] 1

---
 src/views/login/index.vue |   21 ++++++++++++---------
 1 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/src/views/login/index.vue b/src/views/login/index.vue
index 9696f48..f9da4c4 100644
--- a/src/views/login/index.vue
+++ b/src/views/login/index.vue
@@ -15,10 +15,10 @@
 
         <div class="flex re-tab">
             <div class="textColor1" :class="activeIndex == 1 ? 'active' : ''" @click="changeIndex(1)">
-                {{ $t('email') }}
+                {{ $t('电子邮箱') }}
             </div>
             <div class="textColor1" :class="activeIndex == 2 ? 'active' : ''" @click="changeIndex(2)">
-                {{ $t('phoneNum') }}
+                {{ $t('手机号码') }}
             </div>
         </div>
 
@@ -26,7 +26,7 @@
             v-model="username" :dialCode="dialCode" @selectArea="onSelectArea" :area="isArea" :icon="icon"
             @pressEnter="verifyLogin" />
 
-        <ExInput style="padding-bottom:0 !important;" :placeholderText="$t('entryPassword')" v-model="password"
+        <ExInput style="padding-bottom:0 !important;" :placeholderText="$t('请输入登录密码')" v-model="password"
             typeText="password" @pressEnter="verifyLogin" />
 
         <div class="forget colorMain" @click="$router.push('/forget')">{{ $t('forgetPassword') }}</div>
@@ -55,7 +55,6 @@
 import store from '@/store/store'
 import { LOGO, customerServiceUrl } from "@/config";
 const { t } = useI18n()
-const customer_service_url = ref(customerServiceUrl) // 客服链接,有值的话就会跳转到客服外链
 
 const router = useRouter()
 const onRoute = (path) => {
@@ -63,8 +62,8 @@
         router.go(-1)
     } else {
         if (path == '/customerService') {
-            if (customer_service_url.value) {
-                window.location.href = customer_service_url.value;
+            if (customerServiceUrl()) {
+                window.location.href = customerServiceUrl();
             } else {
                 router.push(path)
             }
@@ -87,9 +86,9 @@
         case 0:
             return bFlag ? t('account') : t('entryAccount');
         case 1:
-            return bFlag ? t('email') : t('entryEmail');
+            return bFlag ? t('电子邮箱') : t('entryEmail');
         case 2:
-            return bFlag ? t('phoneNum') : t('entryPhone');
+            return bFlag ? t('手机号码') : t('请输入手机号码');
     }
 }
 const controlChildRef = ref(null)
@@ -224,7 +223,11 @@
         width: 100%;
 
         img {
-            width: 8.5rem;
+            width: auto;
+            max-width: 280px;
+            height: auto;
+            max-height: 120px;
+            object-fit: contain;
         }
     }
 

--
Gitblit v1.9.3