123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
- <head>
- <th:block th:include="include :: header('顾客订购审核表新增')" />
- <th:block th:include="include :: ztree-css" />
- </head>
- <body class="white-bg">
- <div class="wrapper wrapper-content animated fadeInRight ibox-content">
- <form id="form-SGkdgglCustomerOrderAudit-add" class="customize-search-form">
- <div class="customize-form-group-container">
- <div class="customize-form-group">
- <label>更新时间:</label>
- <input name="updateTime" placeholder="更新时间" id="updateTime" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>订购单号:</label>
- <input name="orderNumber" placeholder="订购单号" id="orderNumber" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>创建人:</label>
- <input name="createdBy" placeholder="创建人" id="createdBy" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>创建日期:</label>
- <input name="createdDate" placeholder="创建日期" id="createdDate" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>收货人手机号:</label>
- <input name="recipientPhone" placeholder="收货人手机号" id="recipientPhone" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>收货人姓名:</label>
- <input name="recipientName" placeholder="收货人姓名" id="recipientName" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>1待审核, 2审核, 3驳回:</label>
- <input name="orderStatus" placeholder="1待审核, 2审核, 3驳回" id="orderStatus" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>操作人:</label>
- <input name="operator" placeholder="操作人" id="operator" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>定金支付状态:1支付中,2未支付,3支付完成:</label>
- <input name="depositPaymentStatus" placeholder="定金支付状态:1支付中,2未支付,3支付完成" id="depositPaymentStatus" class="styled-input" type="text">
- </div>
- </div>
- </form>
- </div>
- <th:block th:include="include :: footer" />
- <th:block th:include="include :: ztree-js" />
- <script type="text/javascript">
- function submitHandler() {
- if ($.validate.form()) {
- add();
- }
- }
- function add() {
- var data = $("#form-SGkdgglCustomerOrderAudit-add").serializeArray();
- $.ajax({
- cache : true,
- type : "POST",
- url : ctx + "gkdggl/sgkdgglcustomerorderaudit/sGkdgglCustomerOrderAuditAdd",
- data : data,
- async : false,
- error : function(request) {
- $.modal.alertError("系统错误");
- },
- success : function(data) {
- $.operate.successCallback(data);
- }
- });
- }
- </script>
- </body>
- </html>
|