iot-gateway_fontend/index.html
Kven 69a0144ebd feat(iot): 实现基于 Websocket 的设备管理系统
- 更新系统标题为"基于MQTT的IOT设备管理系统"
- 移除旧的SSE连接,改为使用WebSocket连接
- 新增设备状态、产品状态和报警状态的WebSocket连接及处理逻辑
- 更新面包屑导航和页面标题
- 修改用户编辑页面的标题
- 更新登录页面的标题
2025-03-25 22:16:36 +08:00

18 lines
476 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="shortcut icon"
type="image/x-icon"
href="https://unpkg.byted-static.com/latest/byted/arco-config/assets/favicon.ico"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>基于MQTT的IOT设备管理系统</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>