2021-09-27 22:53:42 +08:00
|
|
|
<!DOCTYPE html>
|
2021-10-22 21:16:36 +08:00
|
|
|
<html lang="zh_CN">
|
2021-10-22 20:00:32 +08:00
|
|
|
|
2021-09-27 22:53:42 +08:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
2022-07-16 00:43:41 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
2022-07-17 23:08:46 +08:00
|
|
|
<link rel="stylesheet" href="./github.css">
|
|
|
|
|
<link rel="stylesheet" href="./theme.css">
|
2022-07-21 13:21:06 +08:00
|
|
|
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
let url = "https://api.github.com/repos/hbk01/hbk01.github.io/commits?per_page=5";
|
|
|
|
|
$(document).ready(() => {
|
|
|
|
|
$.getJSON(url, data => {
|
|
|
|
|
data.forEach(element => {
|
|
|
|
|
let message = element.commit.message.replace("\n", "<br>");
|
|
|
|
|
if (message.startsWith("+")) {
|
|
|
|
|
message = message.replace("+", "");
|
|
|
|
|
}
|
|
|
|
|
let time = element.commit.committer.date.slice(0, 10);
|
|
|
|
|
$(".changelog").append("<li>" + time + ": " + message + "</li>");
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2021-09-27 22:53:42 +08:00
|
|
|
<title>QC TOOL</title>
|
|
|
|
|
</head>
|
2021-10-22 20:00:32 +08:00
|
|
|
|
2021-09-27 22:53:42 +08:00
|
|
|
<body>
|
2021-10-22 20:00:32 +08:00
|
|
|
<div class="list">
|
2022-07-21 13:21:06 +08:00
|
|
|
<h4>功能列表</h4>
|
2021-10-22 21:16:36 +08:00
|
|
|
<div class="item" onclick="window.location.href='./titer.html'">
|
2022-05-10 23:20:18 +08:00
|
|
|
标水
|
2021-10-22 20:00:32 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="item" onclick="window.location.href='./lod.html'">
|
2022-05-10 23:20:18 +08:00
|
|
|
干燥失重
|
2021-10-22 20:00:32 +08:00
|
|
|
</div>
|
2022-01-12 23:04:20 +08:00
|
|
|
<div class="item" onclick="window.location.href='./roi.html'">
|
2022-05-10 23:20:18 +08:00
|
|
|
炽灼残渣
|
2022-01-12 23:04:20 +08:00
|
|
|
</div>
|
2022-04-10 23:46:11 +08:00
|
|
|
<div class="item" onclick="window.location.href='./injection-sequence.html'">
|
2022-05-10 23:20:18 +08:00
|
|
|
进样序列
|
2022-04-10 23:46:11 +08:00
|
|
|
</div>
|
2022-07-15 23:51:47 +08:00
|
|
|
<div class="item" onclick="window.location.href='./equipment.html'">
|
|
|
|
|
设备信息
|
|
|
|
|
</div>
|
2021-10-22 20:00:32 +08:00
|
|
|
</div>
|
2022-07-21 13:21:06 +08:00
|
|
|
<div class="about">
|
|
|
|
|
<h4>关于</h4>
|
|
|
|
|
<p>本项目开源于
|
|
|
|
|
<a href="https://github.com/hbk01/hbk01.github.io">Github</a> ,并由 <a href="https://docs.github.com/en/pages">Github Pages</a> 提供页面构建及部署服务。</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="changelog">
|
|
|
|
|
<h4>变更日志</h4>
|
|
|
|
|
</div>
|
2021-09-27 22:53:42 +08:00
|
|
|
</body>
|
2021-10-22 20:00:32 +08:00
|
|
|
|
2021-09-27 22:53:42 +08:00
|
|
|
</html>
|