index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})"></head>
  4. <body class="timo-layout-page">
  5. <div class="layui-card">
  6. <div class="layui-card-header timo-card-header">
  7. <span><i class="fa fa-bars"></i> 数据统计</span>
  8. <i class="layui-icon layui-icon-refresh refresh-btn"></i>
  9. </div>
  10. <div class="layui-card-body">
  11. <div class="timo-table-wrap">
  12. <table class="layui-table timo-table">
  13. <thead>
  14. <tr>
  15. <th data-field="userId">site</th>
  16. <th data-field="screenName">parser</th>
  17. <th data-field="gender">URL 总量</th>
  18. <th data-field="signature">已爬取 URL</th>
  19. <th data-field="following">待爬取 URL</th>
  20. <th data-field="follower">粉丝</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <tr th:each="item:${list}">
  25. <td th:text="${item.userId}"></td>
  26. <td th:text="${item.screenName}"></td>
  27. <td th:text="${item.gender}"></td>
  28. <td th:text="${item.signature}"></td>
  29. <td th:text="${item.following}"></td>
  30. <td th:text="${item.follower}"></td>
  31. </tr>
  32. </tbody>
  33. </table>
  34. </div>
  35. </div>
  36. </div>
  37. <script th:replace="/common/template :: script"></script>
  38. </body>
  39. </html>