123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org">
- <head>
- <th:block th:include="include :: header('新增保函订单')"/>
- <th:block th:include="include :: datetimepicker-css"/>
- </head>
- <body class="white-bg">
- <div class="wrapper wrapper-content animated fadeInRight ibox-content">
- <form class="form-horizontal m" id="form-process-add">
- <input name="pId" th:field="*{productInfo.id}" type="hidden">
- <div class="form-group">
- <label class="col-sm-3 control-label">商品名称:</label>
- <div class="col-sm-8">
- <input name="premiumAmt" th:field="*{productInfo.skuName}" readonly="true"
- class="form-control" type="text">
- </div>
- </div>
- <div class="form-group">
- <label class="col-sm-3 control-label is-required">下架:</label>
- <div class="col-sm-8">
- <div class="radio">
- <label class="radio-box">
- <input type="radio" checked="" value="04" name="processStsCd">通过</label>
- <label class="radio-box">
- <input type="radio" value="03" name="processStsCd">未通过</label>
- </div>
- </div>
- </div>
- <div>
- <label class="col-sm-3 control-label">未通过原因:</label>
- <div class="col-sm-8">
- <textarea name="rejectReason" class="form-control"></textarea>
- </div>
- </div>
- </form>
- </div>
- <th:block th:include="include :: footer"/>
- <th:block th:include="include :: datetimepicker-js"/>
- <script th:inline="javascript">
- var prefix = ctx + "opt/process"
- $("#form-process-add").validate({
- focusCleanup: true
- });
- function submitHandler() {
- if ($.validate.form()) {
- $.operate.save(prefix + "/edit", $('#form-process-add').serialize());
- }
- }
- </script>
- </body>
- </html>
|