31d6306e3b
=== 后端核心 === - db_helper: 统一数据库访问抽象层 - system.py API: * 参数绑定修复: 使用 Body(embed=True) 接收 JSON * 添加请求日志记录 - sync.py: 仅导出 DB→JSON(备份) === 合规与流水线 === - compliance_checker: 标签检测优化(仅检查容器,避免正文误判) - 所有脚本(creator/collector/writer/outline/research等)统一使用数据库 === 前端改版 === - topics.html: * 创作/优化 API 路径修正 * 预览弹窗重设计:多平台并行加载、富文本显示、单复制按钮 * 状态中文映射(getStatusLabel) * 认证检查 - 所有 HTML 静态资源路径修复(移除 /static 前缀) === 数据一致性 === - 数据库状态统一为英文(pending/review/ready/published) - 前端显示中文化映射 已测试 A03 流水线完整通过。
351 lines
8.9 KiB
HTML
351 lines
8.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>宇之然内容创作平台 - 登录</title>
|
|
<link rel="stylesheet" href="element-plus.css">
|
|
<style>
|
|
/* 重置与基础样式 */
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
/* 紫蓝渐变背景 */
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
/* 背景动态装饰圆 */
|
|
.bg-circle {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
animation: float 20s infinite ease-in-out;
|
|
}
|
|
.bg-circle:nth-child(1) { width: 300px; height: 300px; top: -150px; left: -150px; animation-delay: 0s; }
|
|
.bg-circle:nth-child(2) { width: 200px; height: 200px; bottom: -100px; right: -100px; animation-delay: -5s; }
|
|
.bg-circle:nth-child(3) { width: 150px; height: 150px; top: 50%; right: 10%; animation-delay: -10s; }
|
|
.bg-circle:nth-child(4) { width: 100px; height: 100px; bottom: 20%; left: 5%; animation-delay: -15s; }
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translate(0, 0) scale(1); }
|
|
25% { transform: translate(30px, -30px) scale(1.1); }
|
|
50% { transform: translate(-20px, 20px) scale(0.9); }
|
|
75% { transform: translate(20px, 30px) scale(1.05); }
|
|
}
|
|
|
|
/* 登录卡片 */
|
|
.login-card {
|
|
position: relative;
|
|
z-index: 10;
|
|
width: 100%;
|
|
max-width: 420px;
|
|
padding: 48px 40px;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
border-radius: 24px;
|
|
box-shadow:
|
|
0 20px 60px rgba(0, 0, 0, 0.3),
|
|
0 0 0 1px rgba(255, 255, 255, 0.2) inset;
|
|
animation: slide-up 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
}
|
|
|
|
@keyframes slide-up {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(40px) scale(0.95);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
.login-title {
|
|
text-align: center;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 40px;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.login-subtitle {
|
|
text-align: center;
|
|
color: #9ca3af;
|
|
font-size: 14px;
|
|
margin-top: -24px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
/* 表单样式 */
|
|
.form-group {
|
|
margin-bottom: 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.form-input {
|
|
width: 100%;
|
|
padding: 14px 16px;
|
|
border: 2px solid #e5e7eb;
|
|
border-radius: 12px;
|
|
font-size: 16px;
|
|
color: #1f2937;
|
|
background: #f9fafb;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
outline: none;
|
|
}
|
|
|
|
.form-input:focus {
|
|
border-color: #667eea;
|
|
background: #ffffff;
|
|
box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.form-input:not(:placeholder-shown) {
|
|
border-color: #764ba2;
|
|
}
|
|
|
|
.form-label {
|
|
position: absolute;
|
|
left: 14px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
color: #9ca3af;
|
|
pointer-events: none;
|
|
transition: all 0.2s ease;
|
|
font-size: 16px;
|
|
background: transparent;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.form-input:focus ~ .form-label,
|
|
.form-input:not(:placeholder-shown) ~ .form-label {
|
|
top: 0;
|
|
font-size: 12px;
|
|
color: #667eea;
|
|
background: #ffffff;
|
|
}
|
|
|
|
/* 登录按钮 */
|
|
.login-btn {
|
|
width: 100%;
|
|
padding: 14px;
|
|
margin-top: 8px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 12px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.login-btn:hover:not(:disabled) {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
|
|
}
|
|
|
|
.login-btn:active:not(:disabled) {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.login-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
}
|
|
|
|
/* 按钮加载动画 */
|
|
.btn-loader {
|
|
display: inline-block;
|
|
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;
|
|
margin-right: 8px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* 底部信息 */
|
|
.login-footer {
|
|
text-align: center;
|
|
margin-top: 24px;
|
|
color: #6b7280;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.login-footer a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.login-footer a:hover {
|
|
color: #764ba2;
|
|
}
|
|
|
|
/* 响应式 */
|
|
@media (max-width: 480px) {
|
|
.login-card {
|
|
max-width: 90%;
|
|
padding: 32px 24px;
|
|
margin: 16px;
|
|
border-radius: 20px;
|
|
}
|
|
.login-title {
|
|
font-size: 24px;
|
|
margin-bottom: 24px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- 背景装饰 -->
|
|
<div class="bg-circle"></div>
|
|
<div class="bg-circle"></div>
|
|
<div class="bg-circle"></div>
|
|
<div class="bg-circle"></div>
|
|
|
|
<div class="login-card">
|
|
<h1 class="login-title">宇之然内容创作平台</h1>
|
|
<p class="login-subtitle">Yuzhiran Content Creation Platform</p>
|
|
|
|
<form @submit.prevent="handleLogin">
|
|
<div class="form-group">
|
|
<input
|
|
v-model="username"
|
|
class="form-input"
|
|
type="text"
|
|
placeholder=" "
|
|
required
|
|
autocomplete="username"
|
|
/>
|
|
<label class="form-label">用户名</label>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<input
|
|
v-model="password"
|
|
class="form-input"
|
|
type="password"
|
|
placeholder=" "
|
|
required
|
|
autocomplete="current-password"
|
|
/>
|
|
<label class="form-label">密码</label>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
class="login-btn"
|
|
:disabled="loading"
|
|
>
|
|
<span v-if="loading" class="btn-loader"></span>
|
|
{{ loading ? '登录中...' : '立即登录' }}
|
|
</button>
|
|
</form>
|
|
|
|
<p class="login-footer">
|
|
管理员用户可访问完整系统功能
|
|
</p>
|
|
</div>
|
|
|
|
<script src="vue.global.prod.js"></script>
|
|
<script src="element-plus.full.js"></script>
|
|
<script>
|
|
const { ref } = Vue;
|
|
const { ElMessage } = ElementPlus;
|
|
|
|
const app = Vue.createApp({
|
|
name: 'LoginPage',
|
|
setup() {
|
|
const username = ref('');
|
|
const password = ref('');
|
|
const loading = ref(false);
|
|
|
|
const handleLogin = async () => {
|
|
if (!username.value.trim() || !password.value) {
|
|
ElMessage.warning('请输入用户名和密码');
|
|
return;
|
|
}
|
|
|
|
loading.value = true;
|
|
|
|
try {
|
|
const response = await fetch('/api/auth/login', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({
|
|
username: username.value.trim(),
|
|
password: password.value
|
|
})
|
|
});
|
|
|
|
const data = await response.json();
|
|
|
|
if (response.ok && data.token) {
|
|
localStorage.setItem('authToken', data.token);
|
|
localStorage.setItem('userRole', data.role || 'admin');
|
|
localStorage.setItem('currentUser', JSON.stringify(data.user));
|
|
|
|
ElMessage({
|
|
message: '登录成功!正在跳转...',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {
|
|
window.location.href = '/';
|
|
}
|
|
});
|
|
} else {
|
|
ElMessage.error(data.message || data.error || '登录失败,请检查用户名和密码');
|
|
}
|
|
} catch (error) {
|
|
console.error('登录请求失败:', error);
|
|
ElMessage.error('网络连接失败,请检查服务是否正常运行');
|
|
} finally {
|
|
loading.value = false;
|
|
}
|
|
};
|
|
|
|
// 检查是否已登录
|
|
const token = localStorage.getItem('authToken');
|
|
if (token) {
|
|
window.location.href = '/';
|
|
}
|
|
|
|
return {
|
|
username,
|
|
password,
|
|
loading,
|
|
handleLogin
|
|
};
|
|
}
|
|
});
|
|
|
|
app.use(ElementPlus);
|
|
app.mount('body');
|
|
</script>
|
|
</body>
|
|
</html>
|