| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
- </head>
- <body>
- <div class="layui-form timo-compile">
- <form th:action="@{/api/monitor/app/notify/batch}">
- <table class="layui-table timo-detail-table">
- <tbody>
- <tr>
- <th>环境</th>
- <td>
- <div class="layui-form-item">
- <div class="layui-input-inline">
- <select name="env">
- <option th:each="item : ${environments}" th:value="${item.key}">[[${item.value}]]</option>
- </select>
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <th>应用类型</th>
- <td>
- <div class="layui-form-item">
- <div class="layui-input-inline">
- <select name="appType">
- <option th:each="item : ${appTypes}" th:value="${item.key}">[[${item.value}]]</option>
- </select>
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <th>构建通知</th>
- <td>
- <div class="layui-form-item">
- <div class="layui-input-inline">
- <select name="appBuild">
- <option th:each="item : ${notifyGroups}" th:value="${item.key}">[[${item.value}]]</option>
- </select>
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <th>部署通知</th>
- <td>
- <div class="layui-form-item">
- <div class="layui-input-inline">
- <select name="appDeploy">
- <option th:each="item : ${notifyGroups}" th:value="${item.key}">[[${item.value}]]</option>
- </select>
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <th>健康检查通知</th>
- <td>
- <div class="layui-form-item">
- <div class="layui-input-inline">
- <select name="appHealthCheck">
- <option th:each="item : ${notifyGroups}" th:value="${item.key}">[[${item.value}]]</option>
- </select>
- </div>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="layui-form-item timo-finally">
- <button class="layui-btn ajax-submit"><i class="fa fa-check-circle"></i> 保存</button>
- <button class="layui-btn btn-secondary close-popup"><i class="fa fa-times-circle"></i> 关闭</button>
- </div>
- </form>
- </div>
- <script th:replace="/common/template :: script"></script>
- </body>
- </html>
|