lxp
2025-03-13 b7c4edd36912d26aa2e8e6fa5605c370bb2e478a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
    <title>样品信息</title>
    <style>
 
    </style>
</head>
<body>
<p>
    <span style="font-weight: bold">样品编号:</span>
    <span th:text="${sampleCode}"></span>
</p>
<p>
    <span  style="font-weight: bold">委托单号:</span>
    <span th:text="${entrustCode}"></span>
</p>
<p>
    <span  style="font-weight: bold">规格型号:</span>
    <span th:text="${model}"></span>
</p>
<p>
    <span  style="font-weight: bold">样品名称:</span>
    <span th:text="${sample}"></span>
</p>
<p>
    <span  style="font-weight: bold">检测项目:</span>
    <span th:text="${inspectionItem}"></span>
</p>
<p>
    <span  style="font-weight: bold">样品状态:</span>
    <input type="checkbox" disabled name="insState" value="0" th:checked="${insState == 0}">
    <label>待检</label>
    <input type="checkbox" disabled name="insState" value="1" th:checked="${insState == 1}">
    <label>在检</label>
    <input type="checkbox" disabled name="insState" value="2" th:checked="${insState == 2}">
    <label>已检</label>
    <input type="checkbox" disabled name="isLeave" value="1" th:checked="${isLeave == 1}">
    <label>留样</label>
 
</p>
</body>
</html>