| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})"></head>
- <body class="timo-layout-page">
- <div class="layui-card">
- <div class="layui-card-header timo-card-header">
- <span><i class="fa fa-bars"></i> 数据统计</span>
- <i class="layui-icon layui-icon-refresh refresh-btn"></i>
- </div>
- <div class="layui-card-body">
- <div class="timo-table-wrap">
- <table class="layui-table timo-table">
- <thead>
- <tr>
- <th data-field="userId">site</th>
- <th data-field="screenName">parser</th>
- <th data-field="gender">URL 总量</th>
- <th data-field="signature">已爬取 URL</th>
- <th data-field="following">待爬取 URL</th>
- <th data-field="follower">粉丝</th>
- </tr>
- </thead>
- <tbody>
- <tr th:each="item:${list}">
- <td th:text="${item.userId}"></td>
- <td th:text="${item.screenName}"></td>
- <td th:text="${item.gender}"></td>
- <td th:text="${item.signature}"></td>
- <td th:text="${item.following}"></td>
- <td th:text="${item.follower}"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <script th:replace="/common/template :: script"></script>
- </body>
- </html>
|