buildtime.html 1.0 KB

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})"></head>
  4. <body>
  5. <div class="timo-detail-page">
  6. <table class="layui-table timo-detail-table">
  7. <thead>
  8. <tr>
  9. <th class="sortable" data-field="pullConsumed">更新耗时(ms)</th>
  10. <th class="sortable" data-field="compileConsumed">编译耗时(ms)</th>
  11. <th class="sortable" data-field="packConsumed">打包耗时(ms)</th>
  12. <th class="sortable" data-field="pushConsumed">推送耗时(ms)</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr>
  17. <td th:text="${buildConsumed.pullConsumed}">更新耗时</td>
  18. <td th:text="${buildConsumed.compileConsumed}">编译耗时</td>
  19. <td th:text="${buildConsumed.packConsumed}">打包耗时</td>
  20. <td th:text="${buildConsumed.pushConsumed}">推送耗时</td>
  21. </tr>
  22. </tbody>
  23. </table>
  24. </div>
  25. <script th:replace="/common/template :: script"></script>
  26. </body>
  27. </html>