print.html
1.66 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head th:include="include :: header"></head>
<title>物料明细</title>
<!--<link href="css/bootstrap.min.css" rel="stylesheet" />-->
<!--<link href="css/font-awesome.min.css" rel="stylesheet" />-->
<!--<!–[if IE]>-->
<!--<link href="css/font-awesome-ie7.min.css" rel="stylesheet" />-->
<!--<![endif]–>-->
<style type="text/css">
/* 设置背景颜色 字体印刷不清晰
* {
color: #000000!important;
-webkit-tap-highlight-color: #000000!important;
}*/
.table-bordered td, .table-bordered th {
border: 1px solid #000 !important;
}
.table tbody tr td {
padding: 3px;
text-align: center;
}
</style>
</head>
<body id="ddd">
<div class="container" style=" width:320px;/*height:228px;*/color: #333">
<div class="row">
<p><span th:text="${result.msg}"></span></p>
</div>
</div>
<div th:include="include :: footer"></div>
<!--<script type="text/javascript" src="../../../js/jquery-1.4.4.min.js"></script>-->
<!--<script type="text/javascript" src="../../../js/jquery.jqprint-0.3.js"></script>-->
<script type="text/javascript" src="../../../js/qrcode/qrcode.min.js"></script>
<script th:inline="javascript">
const msg = /*[[${result.msg}]]*/ "helloword";
console.log(msg);
</script>
<script type="text/javascript">
</script>
</body>
</html>