优化玩家服务中心登录页,更新LOGO。

This commit is contained in:
Stev_Wang
2026-01-05 17:17:27 +08:00
parent 7b8e6c7f7e
commit 0af28435fe
5 changed files with 3 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

BIN
frontend/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 KiB

View File

@@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>frontend</title> <title>frontend</title>
</head> </head>

BIN
frontend/public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -28,7 +28,7 @@
<div class="view-account-container animate__animated animate__fadeInDown"> <div class="view-account-container animate__animated animate__fadeInDown">
<div class="view-account-top"> <div class="view-account-top">
<div class="view-account-top-logo"> <div class="view-account-top-logo">
<img src="/assets/account-logo-D9-eMHsk.png" alt="梦幻西游" /> <img :src="logoImage" alt="梦幻西游" />
</div> </div>
<div class="view-account-top-desc">梦幻西游玩家服务中心</div> <div class="view-account-top-desc">梦幻西游玩家服务中心</div>
</div> </div>
@@ -150,6 +150,7 @@ import { RiAlertLine } from '@remixicon/vue'
import { PersonOutline, LockClosedOutline, ShieldOutline } from '@vicons/ionicons5' import { PersonOutline, LockClosedOutline, ShieldOutline } from '@vicons/ionicons5'
import { usePlayerStore } from '@/stores/player' import { usePlayerStore } from '@/stores/player'
import { generateCaptcha, checkCaptchaEnabled, checkPlayerServiceStatus } from '@/api/player' import { generateCaptcha, checkCaptchaEnabled, checkPlayerServiceStatus } from '@/api/player'
import logoImage from '../../../assets/logo.png'
const router = useRouter() const router = useRouter()
const message = useMessage() const message = useMessage()