This commit is contained in:
丹尼尔
2026-03-11 18:19:30 +08:00
parent 152877cef2
commit b7ef2569c4
13 changed files with 6907 additions and 94 deletions

30
public/pages.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>静态页面入口</title>
<style>
* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; margin: 2rem; background: #0f172a; color: #e2e8f0; }
h1 { font-size: 1.5rem; margin-bottom: 1rem; }
ul { list-style: none; padding: 0; }
li { margin: 0.5rem 0; }
a { color: #38bdf8; text-decoration: none; }
a:hover { text-decoration: underline; }
.note { font-size: 0.875rem; color: #94a3b8; margin-top: 1.5rem; }
</style>
</head>
<body>
<h1>静态页面入口</h1>
<p>以下页面均已释放,可直接访问:</p>
<ul>
<li><a href="index.html">index.html</a> — 微信登录控制台(获取二维码 / 滑块验证)</li>
<li><a href="manage.html">manage.html</a> — 客户与消息管理</li>
<li><a href="chat.html">chat.html</a> — 对话/聊天</li>
<li><a href="models.html">models.html</a> — 模型管理</li>
<li><a href="swagger.html">swagger.html</a> — API 文档Swagger</li>
</ul>
<p class="note">通过 Node 前端(如 :3000或直接访问后端如 :8000均可打开上述页面。</p>
</body>
</html>