+ 添加常用操作规程功能

+ 常用操作规程添加 L018-1
+ 常用操作规程添加 L018-4W
This commit is contained in:
2023-03-14 00:55:50 +08:00
parent ae2c723468
commit dc27427059
4 changed files with 201 additions and 0 deletions

View File

@@ -35,6 +35,10 @@
{
"name": "常用标品信息",
"location": "./views/common-standards.html"
},
{
"name": "常用操作规程",
"location": "./views/common-sop.html"
}
// {
// "name": "L414-5KR 相关物质",

57
statics/sop/L018-1.md Normal file
View File

@@ -0,0 +1,57 @@
## L018-1 操作规程
### 1. 纯度及含量
#### 1.1. 色谱条件
色谱柱C18, 250mm x 4.6mm x 5um
流速1.0 mL/min
波长210 nm
运行时间30 min
后运行时间13 min
梯度程序:
| 时间(min) | A% | B% |
| :-------: | :---: | :---: |
| 0 | 70 | 30 |
| 15 | 10 | 90 |
| 30 | 10 | 90 |
#### 1.2. 流动相及溶剂
流动相A0.1% 高氯酸水溶液
流动相B乙腈
溶剂:乙腈
#### 1.3. 样品配置
对照品溶液:称取 25 mg 对照品(两份)至 25 mL 容量瓶,定容。
样品溶液:称取 25 mg 样品(两份)至 25 mL 容量瓶,定容。
**注意:配置的溶液不稳定,需要现配现进。**
#### 1.4. 容量瓶用量
| 规格(mL) | 数量 |
| :------: | :---: |
| 25 | 4 |
每多一批样品则多加 2 个 25 mL 容量瓶
#### 1.5. 进样顺序
+ 空白
+ 对照品溶液1
+ 样品溶液1
+ 样品溶液2
+ 对照品溶液2
#### 1.6. 系统适用性要求
+ 对照品溶液 1 与对照品溶液 2 的 f 值之比应在 99% - 101%
### 2. 干燥失重
条件60 °C抽真空

66
statics/sop/L018-4W.md Normal file
View File

@@ -0,0 +1,66 @@
## L018-4W 操作规程
### 1. 相关物质及含量
#### 1.1. 色谱条件
色谱柱C18, 250mm x 4.6mm x 5um
流速1.0 mL/min
波长210 nm
运行时间45 min
后运行时间13 min
梯度程序:
| 时间(min) | A% | B% |
| :-------: | :---: | :---: |
| 0 | 70 | 30 |
| 15 | 40 | 60 |
| 25 | 10 | 90 |
| 45 | 10 | 90 |
#### 1.2. 流动相及溶剂
流动相A
流动相B乙腈
溶剂:乙腈
#### 1.3. 样品配置
杂质储备液:称取 L018-2 与 L018-3 各 10 mg 于 100 mL 容量瓶中,定容。
LOQ 溶液:移取 50 uL 杂质储备液于 10 mL 容量瓶中,定容。
SST 溶液:称取 10 mg 样品于 10 mL 容量瓶中,加入 200 uL 杂质储备液,定容。
对照品溶液:称取 10 mg 对照品(两份)至 10 mL 容量瓶,定容。
样品溶液:称取 10 mg 样品(两份)至 10 mL 容量瓶,定容。
**注意:上述溶液在 2-8 °C稳定 24 小时**
#### 1.4. 容量瓶用量
| 规格(mL) | 数量 |
| :------: | :---: |
| 100 | 1 |
| 10 | 6 |
每多一批样品则多加 2 个 10 mL 容量瓶
#### 1.5. 进样顺序
+ 空白
+ LOQ
+ SST
+ 空白
+ 对照品溶液1
+ 样品溶液1
+ 样品溶液2
+ 对照品溶液2
#### 1.6. 系统适用性要求
+ LOQ 中 L018-2 及 L018-3 的 S/N 应 ≥10
+ SST 中 L018-2 及 L018-3 与主峰的分离度应良好
+ 对照品溶液 1 与对照品溶液 2 的 f 值之比应在 99% - 101%
### 2. 干燥失重
条件60 °C抽真空

74
views/common-sop.html Normal file
View File

@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>常用操作规程</title>
<link rel="stylesheet" href="../statics/github.css">
<link rel="stylesheet" href="../statics/theme.css">
<style>
#selector {
width: 100%;
height: 32px;
}
option {
height: 32px;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/markdown-it/13.0.1/markdown-it.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
const md = window.markdownit({
breaks: true
})
const tips = `整理了常用的操作规程中的关键内容以供查询,请以纸质操作规程为准!`
const sop = [
"L018-1",
"L018-4W",
]
$(() => {
$("#content").html(tips)
sop.forEach(value => $("#selector").append(`<option value='${value}.md'>${value}</option>`))
$("#selector").on("change", () => {
let name = $("#selector").val()
if (name == "null") {
$("#content").empty()
$("#content").html(tips)
return
}
$.ajax({
url: `../statics/sop/${name}`,
success: (data) => {
$("#content").html(md.render(data))
},
error: (jqXHR, status, error) => {
$("#content").html(`<span style='color: red;'>错误: ${error}</span>`)
}
})
})
})
</script>
</head>
<body>
<div>
<label for="selector">选择要查看的操作规程:</label><br>
<select name="selector" id="selector">
<option value='null' selected>请选择</option>
</select>
</div>
<div id="content"></div>
</body>
</html>