runtime.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 class="sortable" data-field="machineIpv4">机器地址</th>
  16. <th class="sortable" data-field="appId">应用</th>
  17. <th>查看</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <tr th:each="item:${list}">
  22. <td th:text="${item.machineIpv4}">机器地址</td>
  23. <td th:text="${item.appId}">应用</td>
  24. <td>
  25. <a class="open-popup" data-title="日志"
  26. th:attr="data-url=@{'/sys/log/runtime/detail/'+${item.machineId}+'/'+${item.appId}}"
  27. data-size="1200,600" href="#">查看</a>
  28. </td>
  29. </tr>
  30. </tbody>
  31. </table>
  32. </div>
  33. <!--TODO 暂不使用分页
  34. <div th:replace="/common/fragment :: page"></div>-->
  35. </div>
  36. </div>
  37. <script th:replace="/common/template :: script"></script>
  38. <script type="text/javascript">
  39. </script>
  40. </body>
  41. </html>