12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
- <head>
- <th:block th:include="include :: header('编辑审核配置')" />
- </head>
- <body class="white-bg">
- <div class="wrapper wrapper-content animated fadeInRight ibox-content">
- <form class="form-horizontal m" id="form-notice-edit" th:object="${reviewConfig}">
- <input name="id" type="hidden" th:field="*{id}" />
- <div class="form-group">
- <label class="col-sm-2 control-label">系统:</label>
- <div class="col-sm-10">
- <input id="system" name="system" class="form-control" type="hidden" th:field="*{system}"/>
- <select name="system1" id="system1" class="form-control m-b" th:with="type=${@dict.getType('os_type')}" disabled>
- <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{system}" ></option>
- </select>
- </div>
- </div>
- <div class="form-group">
- <label class="col-sm-2 control-label">渠道:</label>
- <div class="col-sm-10">
- <input id="channel" name="channel" class="form-control" type="text" th:field="*{channel}" readonly/>
- </div>
- </div>
- <div class="form-group" >
- <label class="col-sm-2 control-label">版本号:</label>
- <div class="col-sm-10">
- <input id="versions" name="versions" class="form-control" type="text" th:field="*{versions}" required/>
- </div>
- </div>
- <div class="form-group" >
- <label class="col-sm-2 control-label">审核内容:</label>
- <div class="col-sm-10">
- <input id="tagName" name="tagName" class="form-control" type="text" th:field="*{tagName}" required/>
- </div>
- </div>
- <div class="form-group" >
- <label class="col-sm-2 control-label">充值金额:</label>
- <div class="col-sm-10">
- <input id="rechargeAmount" name="rechargeAmount" class="form-control" type="number" th:field="*{rechargeAmount}" required />
- </div>
- </div>
- <div class="form-group">
- <label class="col-sm-2 control-label">状态:</label>
- <div class="col-sm-10">
- <select name="status" id="status" class="form-control m-b" th:with="type=${@dict.getType('common_type')}">
- <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{status}"></option>
- </select>
- </div>
- </div>
- </form>
- </div>
- <th:block th:include="include :: footer" />
- <th:block th:include="include :: summernote-js" />
- <script type="text/javascript">
- var prefix = ctx + "operation/channel/config";
- $("#form-notice-add").validate({
- focusCleanup: true
- });
- function submitHandler() {
- if ($.validate.form()) {
- $.operate.save(prefix + "/edit", $('#form-notice-edit').serialize());
- }
- }
- </script>
- </body>
- </html>
|