| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <!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">
- <tbody>
- <tr>
- <th>应用 ID</th>
- <td th:text="${deployConfigVO.appId}"></td>
- <th>机器地址</th>
- <td th:text="${deployConfigVO.machineIpv4}"></td>
- </tr>
- <tr>
- <th>打包类型</th>
- <td th:text="${deployConfigVO.packType}"></td>
- <span th:if="${deployConfigVO.packType} ne 'docker' ">
- <th>启动目录</th>
- <td th:text="${deployConfigVO.startHome}"></td>
- </span>
- </tr>
- <tr>
- <th>启动脚本</th>
- <td>
- <textarea class="layui-textarea" readonly="readonly" th:text="${deployConfigVO.startScript}"></textarea>
- </td>
- <span th:if="${deployConfigVO.packType} ne 'docker' ">
- <th>解包脚本</th>
- <td>
- <textarea class="layui-textarea" readonly="readonly" th:text="${deployConfigVO.unpackScript}"></textarea>
- </td>
- </span>
- </tr>
- </tbody>
- </table>
- </div>
- <script th:replace="/common/template :: script"></script>
- </body>
- </html>
|