rtlog.html 889 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
  4. </head>
  5. <body class="timo-layout-page">
  6. <div class="layui-card">
  7. <div class="layui-card-header">
  8. <span><i class="fa fa-table"></i> 系统运行日志</span>
  9. <span id="ws-status" style="background: red">离线</span>
  10. </div>
  11. <div class="layui-card-body" style="background: black">
  12. <ul id="applog" class="flow-default layui-timeline" style="height: 500px;overflow: auto">
  13. </ul>
  14. </div>
  15. </div>
  16. </body>
  17. <script th:replace="/common/template :: script"></script>
  18. <script type="text/javascript" th:src="@{/js/plugins/jquery-3.4.1.min.js}"></script>
  19. <script type="text/javascript" th:src="@{/js/wsclient.js}"></script>
  20. <script type="text/javascript" th:inline="javascript">
  21. initWebSocket()
  22. </script>
  23. </html>