- 新增 Dashboard.vue 首页(统计卡片、系统分布、在线率趋势) - 路由调整:根路径 / 默认重定向到 /dashboard - 新增品牌图标(logo.svg、favicon) - 登录页、侧边栏、拓扑图视觉增强 - 全局 CSS 变量重定义(GitHub 风格) - 拓扑图新增布局切换和过滤控制 - 更新 README.md 部署指导,删除旧二进制部署说明
19 lines
824 B
HTML
19 lines
824 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" sizes="32x32" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>LAN Manager · 局域网资产管理</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|