| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})"></head>
- <body>
- <div class="timo-detail-page">
- <table class="layui-table timo-detail-table">
- <thead>
- <tr>
- <th class="sortable" data-field="pullConsumed">更新耗时(ms)</th>
- <th class="sortable" data-field="compileConsumed">编译耗时(ms)</th>
- <th class="sortable" data-field="packConsumed">打包耗时(ms)</th>
- <th class="sortable" data-field="pushConsumed">推送耗时(ms)</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td th:text="${buildConsumed.pullConsumed}">更新耗时</td>
- <td th:text="${buildConsumed.compileConsumed}">编译耗时</td>
- <td th:text="${buildConsumed.packConsumed}">打包耗时</td>
- <td th:text="${buildConsumed.pushConsumed}">推送耗时</td>
- </tr>
- </tbody>
- </table>
- </div>
- <script th:replace="/common/template :: script"></script>
- </body>
- </html>
|