+ 常用操作规程添加 L414-801KR

+ 常用操作规程添加加载中的提示
This commit is contained in:
2023-03-20 00:29:20 +08:00
parent 0f89735994
commit fe1fd9279e
2 changed files with 234 additions and 1 deletions

View File

@@ -39,6 +39,7 @@
"L018-4W",
"L018-5",
"L018-6",
"L414-801KR",
]
$(() => {
@@ -55,9 +56,12 @@
return
}
$("#content").empty()
$("#content").text("加载中...")
$.ajax({
url: `../statics/sop/${name}`,
success: (data) => {
$("#content").empty()
$("#content").html(md.render(data))
}
})
@@ -74,7 +78,6 @@
<option value='null' selected>请选择</option>
</select>
</div>
<br>
<div id="content"></div>
</body>