You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.6 KiB

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title th:text="'微博统计表('+${date}+''"></title>
<link rel="stylesheet" th:href="@{/css/bootstrap.min.css}">
<script th:src="@{/js/bootstrap.min.js}"></script>
<script th:src="@{/js/jquery-3.6.0.min.js}"></script>
<script type="text/javascript" th:src="@{/js/js.js}"></script>
</head>
<body>
<br>
<div th:if="${status == 1}">
<p>没有获取到名单</p>
<a th:href="@{/wb/insert}">跳转到insert页面</a>
</div>
<div class="text-center">
<h1 th:text="'微博统计表('+${date}+''"></h1>
</div>
<div class="text-center" th:each="dept:${list}">
<br>
<h2>
<strong>
<p th:text="${dept.key}"></p>
</strong>
<div class="container">
<table class="table table-striped table-bordered">
<tr>
<td><strong>姓名</strong></td>
<td><strong>是否点赞、评论、转发</strong></td>
</tr>
<tr th:each="v:${dept.value}">
<td th:id="${v.userName}" th:text="${v.userName}" th:onclick="f([[${v.userName}]]);"></td>
<td th:text="${v.scanStatus}"></td>
</tr>
</table>
</div>
</h2>
</div>
</body>
</html>