mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-24 16:13:54 +08:00
149 lines
3.0 KiB
Vue
149 lines
3.0 KiB
Vue
<template>
|
|
<div class="login-container">
|
|
<h1>登录</h1>
|
|
<form @submit.prevent="handleLogin">
|
|
<div class="form-group">
|
|
<label for="username">用户名</label>
|
|
<input type="text" v-model="username" id="username" required />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">密码</label>
|
|
<input type="password" v-model="password" id="password" required />
|
|
</div>
|
|
<button type="submit" :disabled="isLoading">登录</button>
|
|
</form>
|
|
<p>还没注册账户? <router-link to="/register">点击注册</router-link></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
import { useRouter } from 'vue-router';
|
|
import apiClient from '../utils/api';
|
|
|
|
const router = useRouter();
|
|
const username = ref('');
|
|
const password = ref('');
|
|
const isLoading = ref(false);
|
|
|
|
const handleLogin = async () => {
|
|
if (!username.value || !password.value) {
|
|
alert('请输入用户名和密码!');
|
|
return;
|
|
}
|
|
|
|
isLoading.value = true;
|
|
try {
|
|
const response = await apiClient.post('/api/login', {
|
|
username: username.value,
|
|
password: password.value
|
|
});
|
|
|
|
const data = response.data;
|
|
|
|
if (data.success) {
|
|
localStorage.setItem('session_id', data.session_id);
|
|
localStorage.setItem('isLoggedIn', 'true');
|
|
router.push('/panel');
|
|
} else {
|
|
alert(data.message || '登录失败');
|
|
}
|
|
} catch (error) {
|
|
console.error('Login error:', error);
|
|
alert('登录失败,请检查网络连接');
|
|
} finally {
|
|
isLoading.value = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.login-container {
|
|
max-width: 420px;
|
|
margin: 20px auto;
|
|
padding: 40px 50px;
|
|
border: none;
|
|
border-radius: 12px;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
font-size: 28px;
|
|
margin-bottom: 25px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
font-weight: 500;
|
|
color: #4a5568;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
padding: 12px 16px;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
background-color: #f8fafc;
|
|
transition: all 0.3s ease;
|
|
font-size: 15px;
|
|
}
|
|
|
|
input:focus {
|
|
outline: none;
|
|
border-color: #28a745;
|
|
box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
padding: 12px;
|
|
background-color: #28a745;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #218838;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
p {
|
|
margin-top: 20px;
|
|
color: #666;
|
|
font-size: 14px;
|
|
}
|
|
|
|
a {
|
|
color: #28a745;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
a:hover {
|
|
color: #218838;
|
|
text-decoration: underline;
|
|
}
|
|
</style> |