nonHeavycontainer.html
1.34 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
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--360浏览器优先以webkit内核解析-->
<title>概况</title>
<link rel="shortcut icon" href="favicon.ico">
</head>
<body class="gray-bg">
<div class="col-sm-6" style="padding:5px 5px 10px 5px;">
<div class="float-e-margins">
<form>
<div>
<div id="chart2" class="flot-chart1">
<table border="1">
<tr th:border="1">
<td>托盘号</td>
<td>区域</td>
</tr>
<tr th:border="1" th:each="container,state : ${nonHeavycontainer}">
<td th:text="${container.code}"></td>
<td th:text="${container.area}"></td>
</tr>
</table>
</div>
</div>
</form>
</div>
</div>
<script th:src="@{/js/jquery.min.js}"></script>
<script th:src="@{/js/bootstrap.min.js}"></script>
<script>
$(function () {
});
</script>
<style>
table{
background-color: #12e4fd;
color: white;
border: 1px;
width: 100%;
}
</style>
</body>
</html>