- 新增 Dashboard.vue 首页(统计卡片、系统分布、在线率趋势) - 路由调整:根路径 / 默认重定向到 /dashboard - 新增品牌图标(logo.svg、favicon) - 登录页、侧边栏、拓扑图视觉增强 - 全局 CSS 变量重定义(GitHub 风格) - 拓扑图新增布局切换和过滤控制 - 更新 README.md 部署指导,删除旧二进制部署说明
13 lines
674 B
XML
13 lines
674 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
|
|
<defs>
|
|
<linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#58a6ff;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#1f6feb;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect x="4" y="4" width="56" height="56" rx="14" fill="url(#g)" />
|
|
<rect x="20" y="22" width="24" height="3" rx="1.5" fill="white" opacity="0.9" />
|
|
<rect x="20" y="39" width="24" height="3" rx="1.5" fill="white" opacity="0.9" />
|
|
<circle cx="28" cy="23.5" r="1.5" fill="white" />
|
|
<circle cx="28" cy="40.5" r="1.5" fill="white" />
|
|
</svg> |