114 lines
5.6 KiB
HTML
114 lines
5.6 KiB
HTML
|
|
{% extends "base.html" %}
|
|||
|
|
|
|||
|
|
{% block title %}系统日志 - AI 视界{% endblock %}
|
|||
|
|
|
|||
|
|
{% block content %}
|
|||
|
|
<div class="min-h-screen p-8 lg:p-12">
|
|||
|
|
<div class="max-w-6xl mx-auto space-y-8">
|
|||
|
|
<div class="flex items-center justify-between">
|
|||
|
|
<div class="flex items-center gap-4">
|
|||
|
|
<div class="w-12 h-12 bg-slate-900 text-white rounded-2xl flex items-center justify-center shadow-lg">
|
|||
|
|
<i data-lucide="terminal" class="w-7 h-7"></i>
|
|||
|
|
</div>
|
|||
|
|
<div>
|
|||
|
|
<h1 class="text-3xl font-black text-slate-900 tracking-tight">系统审计日志</h1>
|
|||
|
|
<p class="text-slate-400 text-sm">实时监控系统运行状态与安全事件</p>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="flex items-center gap-4">
|
|||
|
|
<!-- 筛选工具栏 -->
|
|||
|
|
<div class="flex items-center bg-white border border-slate-200 rounded-xl px-4 py-2 shadow-sm">
|
|||
|
|
<i data-lucide="search" class="w-4 h-4 text-slate-400 mr-2"></i>
|
|||
|
|
<input type="text" id="logSearch" placeholder="搜索消息或手机号..."
|
|||
|
|
class="outline-none text-sm w-48 text-slate-600" oninput="loadLogs()">
|
|||
|
|
</div>
|
|||
|
|
<select id="logLevel" class="bg-white border border-slate-200 rounded-xl px-4 py-2 text-sm text-slate-600 outline-none shadow-sm" onchange="loadLogs()">
|
|||
|
|
<option value="">全部级别</option>
|
|||
|
|
<option value="INFO">INFO</option>
|
|||
|
|
<option value="WARNING">WARNING</option>
|
|||
|
|
<option value="ERROR">ERROR</option>
|
|||
|
|
</select>
|
|||
|
|
|
|||
|
|
<button onclick="loadLogs()" class="bg-white border border-slate-200 p-3 rounded-xl hover:bg-slate-50 transition-all shadow-sm">
|
|||
|
|
<i data-lucide="refresh-cw" class="w-5 h-5 text-slate-600"></i>
|
|||
|
|
</button>
|
|||
|
|
<a href="/" class="btn-primary px-6 py-3 rounded-xl text-sm font-bold shadow-lg">返回工作台</a>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="bg-white rounded-[2.5rem] shadow-xl border border-slate-100 overflow-hidden">
|
|||
|
|
<div class="overflow-x-auto">
|
|||
|
|
<table class="w-full text-left border-collapse">
|
|||
|
|
<thead>
|
|||
|
|
<tr class="bg-slate-50 border-b border-slate-100">
|
|||
|
|
<th class="px-8 py-5 text-[10px] font-black text-slate-400 uppercase tracking-widest">时间</th>
|
|||
|
|
<th class="px-8 py-5 text-[10px] font-black text-slate-400 uppercase tracking-widest">级别</th>
|
|||
|
|
<th class="px-8 py-5 text-[10px] font-black text-slate-400 uppercase tracking-widest">事件消息</th>
|
|||
|
|
<th class="px-8 py-5 text-[10px] font-black text-slate-400 uppercase tracking-widest">关键参数</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody id="logTableBody" class="text-sm font-medium">
|
|||
|
|
<!-- 动态加载 -->
|
|||
|
|
<tr>
|
|||
|
|
<td colspan="4" class="px-8 py-20 text-center text-slate-400 italic">正在连接日志服务器...</td>
|
|||
|
|
</tr>
|
|||
|
|
</tbody>
|
|||
|
|
</table>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
{% endblock %}
|
|||
|
|
|
|||
|
|
{% block scripts %}
|
|||
|
|
<script>
|
|||
|
|
async function loadLogs() {
|
|||
|
|
const search = document.getElementById('logSearch')?.value || '';
|
|||
|
|
const level = document.getElementById('logLevel')?.value || '';
|
|||
|
|
const url = `/api/auth/logs?search=${encodeURIComponent(search)}&level=${level}`;
|
|||
|
|
|
|||
|
|
try {
|
|||
|
|
const r = await fetch(url);
|
|||
|
|
const d = await r.json();
|
|||
|
|
const body = document.getElementById('logTableBody');
|
|||
|
|
|
|||
|
|
if (d.error) {
|
|||
|
|
body.innerHTML = `<tr><td colspan="4" class="px-8 py-20 text-center text-rose-500 font-bold">${d.error}</td></tr>`;
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (d.logs.length === 0) {
|
|||
|
|
body.innerHTML = `<tr><td colspan="4" class="px-8 py-20 text-center text-slate-400 italic">没有找到符合条件的日志</td></tr>`;
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
body.innerHTML = d.logs.map(log => `
|
|||
|
|
<tr class="border-b border-slate-50 hover:bg-slate-50/50 transition-colors">
|
|||
|
|
<td class="px-8 py-5 text-slate-400 font-mono text-xs">${log.time}</td>
|
|||
|
|
<td class="px-8 py-5">
|
|||
|
|
<span class="px-2.5 py-1 rounded-lg text-[10px] font-black uppercase ${
|
|||
|
|
log.level === 'INFO' ? 'bg-indigo-50 text-indigo-600' :
|
|||
|
|
log.level === 'WARNING' ? 'bg-amber-50 text-amber-600' : 'bg-rose-50 text-rose-600'
|
|||
|
|
}">${log.level}</span>
|
|||
|
|
</td>
|
|||
|
|
<td class="px-8 py-5 text-slate-700 font-bold">${log.message}</td>
|
|||
|
|
<td class="px-8 py-5 text-slate-400 font-mono text-[10px]">
|
|||
|
|
${Object.entries(log.extra).map(([k, v]) => `<span class="inline-block bg-slate-100 rounded px-1.5 py-0.5 mr-1 mb-1">${k}: ${v}</span>`).join('')}
|
|||
|
|
</td>
|
|||
|
|
</tr>
|
|||
|
|
`).join('');
|
|||
|
|
} catch (e) {
|
|||
|
|
console.error(e);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 初始化加载
|
|||
|
|
loadLogs();
|
|||
|
|
|
|||
|
|
// 自动刷新逻辑:如果搜索框为空,则每5秒刷新一次
|
|||
|
|
setInterval(() => {
|
|||
|
|
const search = document.getElementById('logSearch')?.value || '';
|
|||
|
|
if (!search) loadLogs();
|
|||
|
|
}, 5000);
|
|||
|
|
</script>
|
|||
|
|
{% endblock %}
|