<!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>
|