zss
2024-12-27 ebede85283906f52dd45d0755d22140538038ac3
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>检测报告</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        .descriptions {
            width: 65%;
            text-align: left;
        }
        .descriptions-title {
            width: 35%;
            text-align: center;
        }
        .table {
            font-size: 1em;
            color: #1c2023;
            border-collapse: collapse;
            width: 100%;
        }
        .table tr {
            height: 3em;
        }
        table tr:nth-child(odd) .descriptions-title{
            background-color: #dddddd;
        }
        table tr:nth-child(odd) .descriptions{
            background-color: #f0f0f0;
        }
    </style>
</head>
<body>
<h4 th:text="'报告编号:' + ${entrustCode}"></h4>
<table class="table">
    <tr>
        <td class="descriptions-title">试 样 名 称<br/>Name of Product</td>
        <td class="descriptions">
            <p>
                <span th:text="${productName}"></span>
                <br/>
                <span th:text="${productNameEn}"></span>
            </p>
        </td>
    </tr>
    <tr>
        <td class="descriptions-title">型 号<br/>Type and Size</td>
        <td class="descriptions" th:text="${insOrderModel}"></td>
    </tr>
    <tr>
        <td class="descriptions-title">委 托 单 位<br/>Client</td>
        <td class="descriptions">
            <p>
                <span th:text="${company}"></span>
                <br/>
                <span th:text="${companyEn}"></span>
            </p>
        </td>
    </tr>
    <tr>
        <td class="descriptions-title">检 验 类 别<br/>Kind of Test</td>
        <td class="descriptions">
            <p>
                <span th:text="${orderType}"></span>
                <br/>
                <span th:text="${orderTypeEn}"></span>
            </p>
        </td>
    </tr>
    <tr>
        <td class="descriptions-title">收 样 日 期<br/>Received date</td>
        <td class="descriptions">
            <p>
                <span th:text="${getTime}"></span>
                <br/>
                <span th:text="${getTimeEn}"></span>
            </p>
        </td>
    </tr>
    <tr>
        <td class="descriptions-title">签 发 日 期<br/>Date of issue</td>
        <td class="descriptions">
            <p>
                <span th:text="${issuingDate}"></span>
                <br/>
                <span th:text="${issuingDateEn}"></span>
            </p>
        </td>
    </tr>
</table>
</body>
</html>