+ 常用标品信息新增部分标品

+ 常用操作规程新增 L018-5 与 L018-6 的内容
This commit is contained in:
2023-03-17 01:39:06 +08:00
parent dc27427059
commit e5e7491c17
6 changed files with 374 additions and 28 deletions

View File

@@ -9,9 +9,16 @@
<link rel="stylesheet" href="../statics/github.css">
<link rel="stylesheet" href="../statics/theme.css">
<style>
#selector {
select {
width: 100%;
height: 32px;
padding-left: 10px;
border: 1px solid;
border-radius: 6px;
border-color: rgba(27, 31, 36, 0.15);
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
option {
@@ -29,6 +36,8 @@
const sop = [
"L018-1",
"L018-4W",
"L018-5",
"L018-6",
]
$(() => {
@@ -49,9 +58,6 @@
url: `../statics/sop/${name}`,
success: (data) => {
$("#content").html(md.render(data))
},
error: (jqXHR, status, error) => {
$("#content").html(`<span style='color: red;'>错误: ${error}</span>`)
}
})
})
@@ -67,7 +73,7 @@
<option value='null' selected>请选择</option>
</select>
</div>
<br>
<div id="content"></div>
</body>