85 lines
2.4 KiB
HTML
85 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>企业微信智控未来</title>
|
||
<style>
|
||
body {
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
margin: 0;
|
||
padding: 20px;
|
||
background-color: #f5f5f5;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
min-height: 100vh;
|
||
}
|
||
.container {
|
||
text-align: center;
|
||
background: white;
|
||
padding: 40px;
|
||
border-radius: 10px;
|
||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||
max-width: 500px;
|
||
}
|
||
h1 {
|
||
color: #333;
|
||
margin-bottom: 20px;
|
||
}
|
||
.feature-list {
|
||
text-align: left;
|
||
margin: 30px 0;
|
||
}
|
||
.feature-list li {
|
||
margin: 10px 0;
|
||
color: #666;
|
||
}
|
||
.button {
|
||
display: inline-block;
|
||
padding: 12px 30px;
|
||
background: #07c160;
|
||
color: white;
|
||
text-decoration: none;
|
||
border-radius: 5px;
|
||
font-weight: 500;
|
||
transition: background 0.3s;
|
||
}
|
||
.button:hover {
|
||
background: #06a050;
|
||
}
|
||
.note {
|
||
margin-top: 20px;
|
||
padding: 15px;
|
||
background: #e8f5e8;
|
||
border-radius: 5px;
|
||
color: #2d8c2d;
|
||
font-size: 14px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>🦞 智控未来</h1>
|
||
<p>企业微信智能控制系统</p>
|
||
|
||
<div class="feature-list">
|
||
<h3>系统功能:</h3>
|
||
<ul>
|
||
<li>✅ 微信小程序原生开发(WXML + WXSS + JS)</li>
|
||
<li>✅ WebSocket反向连接架构</li>
|
||
<li>✅ Embedded-Redis多用户管理</li>
|
||
<li>✅ HeedDB嵌入式数据存储</li>
|
||
<li>✅ LMStudio AI能力集成</li>
|
||
<li>✅ 企业微信JS-SDK支持</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<a href="https://pactgo.cn" class="button">访问系统</a>
|
||
|
||
<div class="note">
|
||
💡 提示:本系统采用微信小程序原生技术栈开发,请使用微信扫码体验完整功能
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |