docs: 新增整体架构设计文档(doc/,HTML 七章)

覆盖前端五端/后端/MySQL/弹性节点拓扑/Web安全/安全总纲,遵循 design/ 设计系统视觉呈现。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-06-11 23:57:49 +08:00
parent 4bff8593e7
commit 3ae96ef229
10 changed files with 1688 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
lucide.createIcons();
(function () {
var btn = document.getElementById('themeBtn');
if (localStorage.getItem('pg-doc-theme') === 'dark') {
document.documentElement.setAttribute('data-theme', 'dark');
}
btn.addEventListener('click', function () {
var root = document.documentElement;
if (root.getAttribute('data-theme') === 'dark') {
root.removeAttribute('data-theme');
localStorage.setItem('pg-doc-theme', 'light');
} else {
root.setAttribute('data-theme', 'dark');
localStorage.setItem('pg-doc-theme', 'dark');
}
});
})();