48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>二维码</title>
|
|
<style>
|
|
@page {
|
|
/*size: A4 landscape;*/
|
|
/*size: landscape;*/
|
|
margin: 2px;
|
|
}
|
|
|
|
body{
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
font-family: SimSun, serif;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
.qrcode {
|
|
width: 199px;
|
|
height: 199px;
|
|
}
|
|
|
|
.container {
|
|
width: 200px;
|
|
height: 230px;
|
|
page-break-after: always;
|
|
border: #000 1px solid;
|
|
}
|
|
|
|
.container:last-child {
|
|
page-break-after: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container" th:each="item : ${datas}">
|
|
<div style="text-align: center">
|
|
<div>
|
|
<img class="qrcode" alt="" th:src="${item.qrCode}" src="../img/qrcode.png"/>
|
|
</div>
|
|
<div th:text="${item.no}">外D小架前6A</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |