Aurora Admin v1.2.0: 79 components x 5 ends, doc site, contracts batch 1, playground, regression, deploy ready

This commit is contained in:
aurora-admin
2026-09-10 19:21:56 +08:00
commit 51ce3a28f7
654 changed files with 49082 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aurora Admin · ChartPanel(普通 H5)</title>
<link rel="stylesheet" href="../.design_library/aurora-admin/colors_and_type.css" />
<link rel="stylesheet" href="ChartPanel.css" />
<style>body{margin:0;padding:24px;background:#F5F7FA;}</style>
</head>
<body>
<div class="aa-chartpanel" id="panel">
<div class="aa-chartpanel-head">
<span class="aa-chartpanel-title">访问趋势</span>
<div class="aa-chartpanel-tools">
<button class="aa-chartpanel-tool" id="refresh">刷新</button>
<button class="aa-chartpanel-tool" id="export">导出</button>
<button class="aa-chartpanel-tool aa-chartpanel-caret" id="toggle">▾</button>
</div>
</div>
<div class="aa-chartpanel-body" id="body">
<div style="height:160px;background:linear-gradient(135deg,#F0F5FF,#E8ECF1);border-radius:6px;display:flex;align-items:center;justify-content:center;color:#2F54EB;">图表区域(可放置折线/柱状/饼图)</div>
</div>
</div>
<script>
var panel = document.getElementById('panel');
document.getElementById('toggle').onclick = function () { panel.classList.toggle('is-collapsed'); };
document.getElementById('refresh').onclick = function () { alert('刷新图表'); };
document.getElementById('export').onclick = function () { alert('导出图表'); };
</script>
</body>
</html>