Files
asset-tracker/web/records.html

39 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Asset Records</title>
<link rel="stylesheet" href="/app/static/style.css" />
<style>
.top{display:flex;justify-content:space-between;align-items:center;gap:8px}
.muted{color:#6b7280;font-size:13px}
.record-card{border:1px solid #e5e7eb;border-radius:10px;padding:10px;margin-bottom:8px;background:#fff}
.record-card .line{display:flex;justify-content:space-between;gap:10px;font-size:13px;margin:4px 0}
.empty{padding:18px;border:1px dashed #cbd5e1;border-radius:10px;background:#f8fafc;color:#64748b}
</style>
</head>
<body>
<div class="container">
<div class="card top">
<div>
<h1 style="margin:0">已记录内容</h1>
<div class="muted">只读展示页(管理入口:/app</div>
</div>
<button id="refresh-btn">刷新</button>
</div>
<div class="card">
<h2>汇总</h2>
<div id="summary" class="grid"></div>
</div>
<div class="card">
<h2>记录列表</h2>
<div id="records"></div>
</div>
</div>
<script src="/app/static/public.js"></script>
</body>
</html>