fix: bug
This commit is contained in:
30
public/pages.html
Normal file
30
public/pages.html
Normal 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>
|
||||
Reference in New Issue
Block a user