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

View File

@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>步骤 1 - 检查真空度</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%;
height: 100%;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
padding: 24px;
background: white;
color: #0f172a;
overflow-y: auto;
}
.step-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 16px;
color: #0f172a;
}
.step-image-container {
position: relative;
margin-bottom: 16px;
}
.step-image {
max-width: 100%;
height: auto;
border: 1px solid #e2e8f0;
border-radius: 8px;
display: block;
}
.annotation-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.annotation-box { stroke-width: 3; fill: none; }
.annotation-label { font-weight: bold; font-size: 16px; }
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
margin-bottom: 24px;
}
.step-content p { margin-bottom: 12px; }
.step-content ul { margin-left: 24px; margin-top: 12px; }
.step-content li { margin-bottom: 8px; }
.step-content code {
background: #f1f5f9;
padding: 2px 6px;
border-radius: 4px;
font-size: 13px;
color: #0f172a;
}
</style>
</head>
<body>
<div class="step-title">步骤 1: 检查真空度</div>
<div class="step-image-container">
<img src="images/vacuum-gauge.jpg" alt="真空计读数面板" class="step-image"
onerror="this.style.display='none'">
<svg class="annotation-layer">
<rect class="annotation-box" x="15%" y="22%" width="25%" height="20%" stroke="#3b82f6" />
<text class="annotation-label" x="16%" y="19%" fill="#3b82f6">上游真空计</text>
<rect class="annotation-box" x="58%" y="22%" width="25%" height="20%" stroke="#10b981" />
<text class="annotation-label" x="59%" y="19%" fill="#10b981">下游真空计</text>
</svg>
</div>
<div class="step-content">
<p>真空阀门无法打开通常是因为真空度不满足联锁条件。</p>
<p>请检查阀门两侧的真空度读数:</p>
<ul>
<li>上游真空度应 &lt; <code>1&times;10&#8315;&#8311; mbar</code></li>
<li>下游真空度应 &lt; <code>1&times;10&#8315;&#8310; mbar</code></li>
</ul>
</div>
</body>
</html>

View File

@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>步骤 2 - 检查联锁状态</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%;
height: 100%;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
padding: 24px;
background: white;
color: #0f172a;
overflow-y: auto;
}
.step-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 16px;
color: #0f172a;
}
.step-image-container {
position: relative;
margin-bottom: 16px;
}
.step-image {
max-width: 100%;
height: auto;
border: 1px solid #e2e8f0;
border-radius: 8px;
display: block;
}
.annotation-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.annotation-box { stroke-width: 3; fill: none; }
.annotation-label { font-weight: bold; font-size: 16px; }
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
margin-bottom: 24px;
}
.step-content p { margin-bottom: 12px; }
.step-content ol { margin-left: 24px; margin-top: 12px; }
.step-content li { margin-bottom: 8px; }
</style>
</head>
<body>
<div class="step-title">步骤 2: 检查联锁状态</div>
<div class="step-image-container">
<img src="images/valve-control-panel.jpg" alt="阀门控制面板" class="step-image"
onerror="this.style.display='none'">
<svg class="annotation-layer">
<rect class="annotation-box" x="30%" y="18%" width="35%" height="30%" stroke="#f59e0b" />
<text class="annotation-label" x="31%" y="15%" fill="#f59e0b">联锁指示区</text>
</svg>
</div>
<div class="step-content">
<p>如果真空度满足要求但阀门仍无法打开,检查联锁系统:</p>
<ol>
<li>查看阀门控制面板的联锁指示灯</li>
<li>确认相关设备(离子泵、分子泵)运行正常</li>
<li>检查 EPS 系统是否有相关报警</li>
</ol>
</div>
</body>
</html>

View File

@@ -0,0 +1,108 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>步骤 3 - 尝试手动复位</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%;
height: 100%;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
padding: 24px;
background: white;
color: #0f172a;
overflow-y: auto;
}
.step-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 16px;
color: #0f172a;
}
.step-image-container {
position: relative;
margin-bottom: 16px;
}
.step-image {
max-width: 100%;
height: auto;
border: 1px solid #e2e8f0;
border-radius: 8px;
display: block;
}
.annotation-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.annotation-box { stroke-width: 3; fill: none; }
.annotation-label { font-weight: bold; font-size: 16px; }
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
margin-bottom: 24px;
}
.step-content p { margin-bottom: 12px; }
.step-content ol { margin-left: 24px; margin-top: 12px; }
.step-content li { margin-bottom: 8px; }
.warning-box {
background: #fef2f2;
border-left: 4px solid #ef4444;
padding: 12px;
margin: 16px 0;
border-radius: 4px;
}
.warning-box strong {
color: #dc2626;
display: block;
margin-bottom: 8px;
}
</style>
</head>
<body>
<div class="step-title">步骤 3: 尝试手动复位</div>
<div class="step-image-container">
<img src="images/valve-reset.jpg" alt="阀门复位操作" class="step-image"
onerror="this.style.display='none'">
<svg class="annotation-layer">
<rect class="annotation-box" x="40%" y="40%" width="18%" height="12%" stroke="#ef4444" />
<text class="annotation-label" x="41%" y="37%" fill="#ef4444">复位按钮</text>
</svg>
</div>
<div class="step-content">
<p>如果联锁状态异常,尝试手动复位:</p>
<ol>
<li>按下阀门控制面板上的"复位"按钮</li>
<li>等待 5 秒</li>
<li>再次尝试打开阀门</li>
</ol>
</div>
<div class="warning-box">
<strong>&#9888;&#65039; 重要提醒</strong>
复位前必须确认真空度满足要求!在真空度不达标时强行复位可能导致设备损坏。
</div>
</body>
</html>

View File

@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>步骤 4 - 检查气动系统</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%;
height: 100%;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
padding: 24px;
background: white;
color: #0f172a;
overflow-y: auto;
}
.step-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 16px;
color: #0f172a;
}
.step-image-container {
position: relative;
margin-bottom: 16px;
}
.step-image {
max-width: 100%;
height: auto;
border: 1px solid #e2e8f0;
border-radius: 8px;
display: block;
}
.annotation-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.annotation-box { stroke-width: 3; fill: none; }
.annotation-label { font-weight: bold; font-size: 16px; }
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
margin-bottom: 24px;
}
.step-content p { margin-bottom: 12px; }
.step-content ol { margin-left: 24px; margin-top: 12px; }
.step-content li { margin-bottom: 8px; }
.step-content code {
background: #f1f5f9;
padding: 2px 6px;
border-radius: 4px;
font-size: 13px;
color: #0f172a;
}
</style>
</head>
<body>
<div class="step-title">步骤 4: 检查气动系统</div>
<div class="step-image-container">
<img src="images/pneumatic-system.jpg" alt="气动系统" class="step-image"
onerror="this.style.display='none'">
<svg class="annotation-layer">
<rect class="annotation-box" x="22%" y="28%" width="30%" height="24%" stroke="#06b6d4" />
<text class="annotation-label" x="23%" y="25%" fill="#06b6d4">气动控制单元</text>
</svg>
</div>
<div class="step-content">
<p>如果复位后仍无法打开,检查气动系统:</p>
<ol>
<li>确认压缩空气供应正常(压力 &gt; <code>5 bar</code></li>
<li>检查气动管路是否有泄漏</li>
<li>查看电磁阀是否工作(应有"咔哒"声)</li>
</ol>
</div>
</body>
</html>

View File

@@ -0,0 +1,123 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>步骤 5 - 联系维护人员</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%;
height: 100%;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
padding: 24px;
background: white;
color: #0f172a;
overflow-y: auto;
}
.step-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 16px;
color: #0f172a;
}
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
margin-bottom: 24px;
}
.step-content p { margin-bottom: 12px; }
.contact-card {
background: #f0f9ff;
border: 1px solid #bae6fd;
border-radius: 8px;
padding: 16px 20px;
margin-bottom: 16px;
}
.contact-card h4 {
font-size: 15px;
font-weight: bold;
color: #0c4a6e;
margin-bottom: 12px;
}
.contact-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 0;
border-bottom: 1px solid #e0f2fe;
font-size: 14px;
color: #0369a1;
}
.contact-item:last-child { border-bottom: none; }
.contact-item strong {
min-width: 140px;
color: #0c4a6e;
}
.info-box {
background: #fefce8;
border: 1px solid #fde68a;
border-left: 4px solid #f59e0b;
border-radius: 4px;
padding: 16px;
}
.info-box h4 {
font-size: 14px;
font-weight: bold;
color: #92400e;
margin-bottom: 8px;
}
.info-box ul {
margin-left: 24px;
color: #a16207;
font-size: 13px;
}
.info-box li { margin-bottom: 6px; }
</style>
</head>
<body>
<div class="step-title">步骤 5: 联系维护人员</div>
<div class="step-content">
<p>如果以上步骤都无法解决问题,可能是阀门机械故障或控制系统故障。请联系维护人员。</p>
</div>
<div class="contact-card">
<h4>维护人员联系方式</h4>
<div class="contact-item">
<strong>真空系统负责人</strong>
<span>内线 1234</span>
</div>
<div class="contact-item">
<strong>控制系统负责人</strong>
<span>内线 5678</span>
</div>
</div>
<div class="info-box">
<h4>请记录以下信息以便维护人员排查:</h4>
<ul>
<li>故障时间</li>
<li>真空度读数</li>
<li>已执行的操作步骤</li>
</ul>
</div>
</body>
</html>