yl-frontend/src/views/LoginView.vue

357 lines
8.0 KiB
Vue
Raw Normal View History

2024-12-05 21:56:49 +08:00
<template>
<div class="login-container">
2024-12-05 22:06:29 +08:00
<!-- 背景动画 -->
<div class="bg-animation">
<div v-for="n in 10" :key="n" class="circle-container">
<div class="circle"></div>
</div>
</div>
2024-12-05 21:56:49 +08:00
<div class="login-content">
<div class="login-header">
<div class="logo-wrapper">
<img src="@/assets/logo.svg" alt="Logo" class="logo">
</div>
<h2>智慧养老服务平台</h2>
2024-12-05 22:06:29 +08:00
<p class="subtitle">让生活更智慧让关爱更便捷</p>
2024-12-05 21:56:49 +08:00
</div>
<el-card class="login-card">
<template #header>
<div class="card-header">
<span>用户登录</span>
</div>
</template>
<el-form
ref="loginFormRef"
:model="loginForm"
:rules="rules"
label-width="0"
@keyup.enter="handleLogin"
>
<el-form-item prop="username">
<el-input
v-model="loginForm.username"
placeholder="请输入用户名"
:prefix-icon="User"
2024-12-05 22:06:29 +08:00
class="custom-input"
2024-12-05 21:56:49 +08:00
/>
</el-form-item>
<el-form-item prop="password">
<el-input
v-model="loginForm.password"
type="password"
placeholder="请输入密码"
:prefix-icon="Lock"
show-password
2024-12-05 22:06:29 +08:00
class="custom-input"
2024-12-05 21:56:49 +08:00
/>
</el-form-item>
<div class="remember-forgot">
<el-checkbox v-model="rememberMe">记住我</el-checkbox>
2024-12-05 22:06:29 +08:00
<el-link type="primary" @click="forgotPassword" :underline="false">忘记密码</el-link>
2024-12-05 21:56:49 +08:00
</div>
<el-button
type="primary"
class="login-button"
:loading="loading"
@click="handleLogin"
>
2024-12-05 22:06:29 +08:00
{{ loading ? '登录中...' : '登录' }}
2024-12-05 21:56:49 +08:00
</el-button>
<div class="register-link">
还没有账号
2024-12-05 22:06:29 +08:00
<router-link to="/register" class="register-btn">立即注册</router-link>
2024-12-05 21:56:49 +08:00
</div>
</el-form>
</el-card>
2024-12-05 22:06:29 +08:00
<div class="footer">
<p>© 2024 智慧养老服务平台 All Rights Reserved</p>
</div>
2024-12-05 21:56:49 +08:00
</div>
</div>
</template>
<script setup lang="ts">
import { ref, reactive } from 'vue'
import { useRouter, useRoute } from 'vue-router'
import { ElMessage } from 'element-plus'
import { User, Lock } from '@element-plus/icons-vue'
import type { FormInstance } from 'element-plus'
const router = useRouter()
const route = useRoute()
const loginFormRef = ref<FormInstance>()
const loading = ref(false)
const rememberMe = ref(false)
const loginForm = reactive({
username: '',
password: ''
})
const rules = {
username: [
{ required: true, message: '请输入用户名', trigger: 'blur' },
{ min: 3, message: '用户名长度不能小于3个字符', trigger: 'blur' }
],
password: [
{ required: true, message: '请输入密码', trigger: 'blur' },
{ min: 6, message: '密码长度不能小于6个字符', trigger: 'blur' }
]
}
const handleLogin = async () => {
if (!loginFormRef.value) return
await loginFormRef.value.validate(async (valid) => {
if (valid) {
loading.value = true
try {
// TODO: 调用登录API
await new Promise(resolve => setTimeout(resolve, 1000))
// 保存token和用户信息
localStorage.setItem('token', 'dummy-token')
if (rememberMe.value) {
localStorage.setItem('username', loginForm.username)
}
ElMessage.success('登录成功')
// 跳转到之前的页面或首页
const redirect = route.query.redirect as string
router.push(redirect || '/')
} catch (error) {
ElMessage.error('登录失败,请检查用户名和密码')
} finally {
loading.value = false
}
}
})
}
const forgotPassword = () => {
router.push('/forgot-password')
}
</script>
<style scoped>
.login-container {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #1890ff 0%, #36cfc9 100%);
2024-12-05 22:06:29 +08:00
position: relative;
overflow: hidden;
}
/* 背景动画 */
.bg-animation {
position: absolute;
width: 100%;
height: 100%;
}
.circle-container {
position: absolute;
transform: translateY(10%);
}
.circle {
width: 100px;
height: 100px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
position: absolute;
animation: float 8s infinite;
}
@keyframes float {
0%, 100% {
transform: translateY(0) scale(1);
opacity: 0.5;
}
50% {
transform: translateY(-20px) scale(1.1);
opacity: 0.3;
}
2024-12-05 21:56:49 +08:00
}
.login-content {
width: 100%;
2024-12-05 22:06:29 +08:00
max-width: 440px;
2024-12-05 21:56:49 +08:00
padding: 20px;
2024-12-05 22:06:29 +08:00
position: relative;
z-index: 1;
2024-12-05 21:56:49 +08:00
}
.login-header {
text-align: center;
margin-bottom: 30px;
}
.logo-wrapper {
2024-12-05 22:06:29 +08:00
width: 90px;
height: 90px;
margin: 0 auto 20px;
padding: 12px;
background: rgba(255, 255, 255, 0.15);
2024-12-05 21:56:49 +08:00
border-radius: 50%;
backdrop-filter: blur(10px);
2024-12-05 22:06:29 +08:00
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}
70% {
box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
2024-12-05 21:56:49 +08:00
}
.logo {
width: 100%;
height: 100%;
object-fit: contain;
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.login-header h2 {
color: white;
2024-12-05 22:06:29 +08:00
font-size: 28px;
2024-12-05 21:56:49 +08:00
margin: 0;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
2024-12-05 22:06:29 +08:00
.subtitle {
color: rgba(255, 255, 255, 0.9);
margin: 10px 0 0;
font-size: 16px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
2024-12-05 21:56:49 +08:00
.login-card {
2024-12-05 22:06:29 +08:00
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden;
2024-12-05 21:56:49 +08:00
}
.card-header {
text-align: center;
2024-12-05 22:06:29 +08:00
font-size: 20px;
font-weight: 600;
color: #1890ff;
padding: 10px 0;
}
.custom-input :deep(.el-input__wrapper) {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
border-radius: 8px;
padding: 8px 15px;
}
.custom-input :deep(.el-input__wrapper.is-focus) {
box-shadow: 0 2px 12px rgba(24, 144, 255, 0.1);
2024-12-05 21:56:49 +08:00
}
.login-button {
width: 100%;
2024-12-05 22:06:29 +08:00
margin-top: 24px;
height: 44px;
font-size: 16px;
border-radius: 8px;
background: linear-gradient(135deg, #1890ff 0%, #36cfc9 100%);
border: none;
transition: all 0.3s;
}
.login-button:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
2024-12-05 21:56:49 +08:00
}
.remember-forgot {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 2px;
2024-12-05 22:06:29 +08:00
color: #666;
2024-12-05 21:56:49 +08:00
}
.register-link {
2024-12-05 22:06:29 +08:00
margin-top: 20px;
2024-12-05 21:56:49 +08:00
text-align: center;
font-size: 14px;
2024-12-05 22:06:29 +08:00
color: #666;
}
.register-btn {
color: #1890ff;
text-decoration: none;
margin-left: 4px;
font-weight: 500;
}
.register-btn:hover {
text-decoration: underline;
}
.footer {
text-align: center;
margin-top: 30px;
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
}
/* 生成10个不同位置和大小的圆 */
.circle-container:nth-child(1) { left: 10%; animation-delay: 0s; }
.circle-container:nth-child(2) { left: 20%; animation-delay: 2s; }
.circle-container:nth-child(3) { left: 30%; animation-delay: 4s; }
.circle-container:nth-child(4) { left: 40%; animation-delay: 6s; }
.circle-container:nth-child(5) { left: 50%; animation-delay: 8s; }
.circle-container:nth-child(6) { left: 60%; animation-delay: 10s; }
.circle-container:nth-child(7) { left: 70%; animation-delay: 12s; }
.circle-container:nth-child(8) { left: 80%; animation-delay: 14s; }
.circle-container:nth-child(9) { left: 90%; animation-delay: 16s; }
.circle-container:nth-child(10) { left: 95%; animation-delay: 18s; }
.circle-container:nth-child(odd) .circle {
width: 150px;
height: 150px;
}
/* 响应式适配 */
@media (max-width: 480px) {
.login-content {
padding: 15px;
}
.login-header h2 {
font-size: 24px;
}
.subtitle {
font-size: 14px;
}
.logo-wrapper {
width: 80px;
height: 80px;
}
2024-12-05 21:56:49 +08:00
}
</style>