detail.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <tbody>
  8. <tr>
  9. <th>应用 ID</th>
  10. <td th:text="${deployConfigVO.appId}"></td>
  11. <th>机器地址</th>
  12. <td th:text="${deployConfigVO.machineIpv4}"></td>
  13. </tr>
  14. <tr>
  15. <th>打包类型</th>
  16. <td th:text="${deployConfigVO.packType}"></td>
  17. <span th:if="${deployConfigVO.packType} ne 'docker' ">
  18. <th>启动目录</th>
  19. <td th:text="${deployConfigVO.startHome}"></td>
  20. </span>
  21. </tr>
  22. <tr>
  23. <th>启动脚本</th>
  24. <td>
  25. <textarea class="layui-textarea" readonly="readonly" th:text="${deployConfigVO.startScript}"></textarea>
  26. </td>
  27. <span th:if="${deployConfigVO.packType} ne 'docker' ">
  28. <th>解包脚本</th>
  29. <td>
  30. <textarea class="layui-textarea" readonly="readonly" th:text="${deployConfigVO.unpackScript}"></textarea>
  31. </td>
  32. </span>
  33. </tr>
  34. </tbody>
  35. </table>
  36. </div>
  37. <script th:replace="/common/template :: script"></script>
  38. </body>
  39. </html>