All checks were successful
Build Multi-Platform Binaries / build-frontend (push) Successful in 38s
Build Multi-Platform Binaries / build-binaries (amd64, linux, client, true) (push) Successful in 1m25s
Build Multi-Platform Binaries / build-binaries (amd64, darwin, server, false) (push) Successful in 1m31s
Build Multi-Platform Binaries / build-binaries (amd64, windows, client, true) (push) Successful in 1m25s
Build Multi-Platform Binaries / build-binaries (amd64, linux, server, true) (push) Successful in 1m46s
Build Multi-Platform Binaries / build-binaries (arm, 7, linux, client, true) (push) Successful in 1m15s
Build Multi-Platform Binaries / build-binaries (amd64, windows, server, true) (push) Successful in 1m40s
Build Multi-Platform Binaries / build-binaries (arm64, darwin, server, false) (push) Successful in 1m39s
Build Multi-Platform Binaries / build-binaries (arm, 7, linux, server, true) (push) Successful in 1m49s
Build Multi-Platform Binaries / build-binaries (arm64, linux, client, true) (push) Successful in 1m27s
Build Multi-Platform Binaries / build-binaries (arm64, linux, server, true) (push) Successful in 1m56s
Build Multi-Platform Binaries / build-binaries (arm64, windows, server, false) (push) Successful in 1m16s
- 替换 naive-ui 组件为自定义玻璃态设计组件 - 添加粒子动画背景效果 - 优化页面布局结构和响应式设计 - 移除未使用的 NCard、NTable、NStatistic 等组件导入 - 重构规则表格和插件列表的展示方式 - 更新模态框标题和简化配置表单 - 调整头部导航和底部栏样式 - 优化卡片组件的视觉效果和交互反馈
337 lines
7.2 KiB
Vue
337 lines
7.2 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
import { login, setToken } from '../api'
|
|
|
|
const router = useRouter()
|
|
const username = ref('')
|
|
const password = ref('')
|
|
const error = ref('')
|
|
const loading = ref(false)
|
|
|
|
const handleLogin = async () => {
|
|
if (!username.value || !password.value) {
|
|
error.value = '请输入用户名和密码'
|
|
return
|
|
}
|
|
|
|
loading.value = true
|
|
error.value = ''
|
|
|
|
try {
|
|
const { data } = await login(username.value, password.value)
|
|
setToken(data.token)
|
|
router.push('/')
|
|
} catch (e: any) {
|
|
error.value = e.response?.data?.error || '登录失败'
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="login-page">
|
|
<!-- Animated particles -->
|
|
<div class="particles">
|
|
<div class="particle particle-1"></div>
|
|
<div class="particle particle-2"></div>
|
|
<div class="particle particle-3"></div>
|
|
<div class="particle particle-4"></div>
|
|
</div>
|
|
|
|
<!-- Login card -->
|
|
<div class="login-card">
|
|
<div class="login-header">
|
|
<div class="logo-icon">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
|
|
</svg>
|
|
</div>
|
|
<h1 class="logo-text">GoTunnel</h1>
|
|
<p class="subtitle">安全的内网穿透工具</p>
|
|
</div>
|
|
|
|
<form @submit.prevent="handleLogin" class="login-form">
|
|
<div class="form-group">
|
|
<label class="form-label">用户名</label>
|
|
<input
|
|
v-model="username"
|
|
type="text"
|
|
class="glass-input"
|
|
placeholder="请输入用户名"
|
|
:disabled="loading"
|
|
/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="form-label">密码</label>
|
|
<input
|
|
v-model="password"
|
|
type="password"
|
|
class="glass-input"
|
|
placeholder="请输入密码"
|
|
:disabled="loading"
|
|
/>
|
|
</div>
|
|
|
|
<div v-if="error" class="error-alert">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
|
</svg>
|
|
<span>{{ error }}</span>
|
|
</div>
|
|
|
|
<button type="submit" class="glass-button" :disabled="loading">
|
|
<span v-if="loading" class="loading-spinner"></span>
|
|
{{ loading ? '登录中...' : '登录' }}
|
|
</button>
|
|
</form>
|
|
|
|
<div class="login-footer">
|
|
<span>欢迎使用 GoTunnel</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.login-page {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #581c87 100%);
|
|
padding: 16px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Particles */
|
|
.particles {
|
|
position: absolute;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.particle {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
|
|
animation: float-particle 20s ease-in-out infinite;
|
|
}
|
|
|
|
.particle-1 {
|
|
width: 300px;
|
|
height: 300px;
|
|
top: -100px;
|
|
left: -100px;
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
.particle-2 {
|
|
width: 200px;
|
|
height: 200px;
|
|
bottom: -50px;
|
|
right: -50px;
|
|
animation-delay: -5s;
|
|
}
|
|
|
|
.particle-3 {
|
|
width: 150px;
|
|
height: 150px;
|
|
top: 50%;
|
|
right: 10%;
|
|
animation-delay: -10s;
|
|
}
|
|
|
|
.particle-4 {
|
|
width: 100px;
|
|
height: 100px;
|
|
bottom: 20%;
|
|
left: 10%;
|
|
animation-delay: -15s;
|
|
}
|
|
|
|
@keyframes float-particle {
|
|
0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
|
|
25% { transform: translate(30px, -40px) scale(1.1); opacity: 0.5; }
|
|
50% { transform: translate(-20px, -80px) scale(0.9); opacity: 0.4; }
|
|
75% { transform: translate(-40px, -40px) scale(1.05); opacity: 0.35; }
|
|
}
|
|
|
|
/* Login card */
|
|
.login-card {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border-radius: 24px;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
padding: 40px;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
/* Header */
|
|
.login-header {
|
|
text-align: center;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin: 0 auto 16px;
|
|
background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 4px 16px rgba(96, 165, 250, 0.4);
|
|
}
|
|
|
|
.logo-icon svg {
|
|
color: white;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: white;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
|
|
.subtitle {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Form */
|
|
.login-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.form-label {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.glass-input {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 12px;
|
|
padding: 14px 16px;
|
|
color: white;
|
|
font-size: 15px;
|
|
width: 100%;
|
|
transition: all 0.2s ease;
|
|
outline: none;
|
|
}
|
|
|
|
.glass-input:focus {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.glass-input::placeholder {
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
.glass-input:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Error alert */
|
|
.error-alert {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 16px;
|
|
background: rgba(239, 68, 68, 0.2);
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
border-radius: 12px;
|
|
color: #fca5a5;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.error-alert svg {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Button */
|
|
.glass-button {
|
|
background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
|
|
border: none;
|
|
border-radius: 12px;
|
|
padding: 14px 24px;
|
|
color: white;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
box-shadow: 0 4px 16px rgba(96, 165, 250, 0.4);
|
|
}
|
|
|
|
.glass-button:hover:not(:disabled) {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 24px rgba(96, 165, 250, 0.5);
|
|
}
|
|
|
|
.glass-button:active:not(:disabled) {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.glass-button:disabled {
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Loading spinner */
|
|
.loading-spinner {
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
border-top-color: white;
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Footer */
|
|
.login-footer {
|
|
text-align: center;
|
|
margin-top: 24px;
|
|
padding-top: 24px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-size: 13px;
|
|
}
|
|
</style>
|