refactor: 修复知识库和操作指引

This commit is contained in:
2026-03-13 14:32:37 +08:00
parent bbe8e60646
commit 58f42de9df
88 changed files with 3387 additions and 2472 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

52
public/scada/demo.html Normal file
View File

@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BL15U 光束线组态图</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: #ffffff;
overflow: hidden;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
#diagram-container {
width: 100%;
height: 100%;
position: relative;
background: #f8f9fa;
}
#background-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
background: #f8f9fa;
}
</style>
</head>
<body>
<div id="diagram-container">
<img id="background-image" src="beamline-background.png" alt="光束线组态图">
</div>
</body>
</html>