SGkdgglCustomerOrderAuditAdd.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
  3. <head>
  4. <th:block th:include="include :: header('顾客订购审核表新增')" />
  5. <th:block th:include="include :: ztree-css" />
  6. </head>
  7. <body class="white-bg">
  8. <div class="wrapper wrapper-content animated fadeInRight ibox-content">
  9. <form id="form-SGkdgglCustomerOrderAudit-add" class="customize-search-form">
  10. <div class="customize-form-group-container">
  11. <div class="customize-form-group">
  12. <label>更新时间:</label>
  13. <input name="updateTime" placeholder="更新时间" id="updateTime" class="styled-input" type="text">
  14. </div>
  15. <div class="customize-form-group">
  16. <label>订购单号:</label>
  17. <input name="orderNumber" placeholder="订购单号" id="orderNumber" class="styled-input" type="text">
  18. </div>
  19. <div class="customize-form-group">
  20. <label>创建人:</label>
  21. <input name="createdBy" placeholder="创建人" id="createdBy" class="styled-input" type="text">
  22. </div>
  23. <div class="customize-form-group">
  24. <label>创建日期:</label>
  25. <input name="createdDate" placeholder="创建日期" id="createdDate" class="styled-input" type="text">
  26. </div>
  27. <div class="customize-form-group">
  28. <label>收货人手机号:</label>
  29. <input name="recipientPhone" placeholder="收货人手机号" id="recipientPhone" class="styled-input" type="text">
  30. </div>
  31. <div class="customize-form-group">
  32. <label>收货人姓名:</label>
  33. <input name="recipientName" placeholder="收货人姓名" id="recipientName" class="styled-input" type="text">
  34. </div>
  35. <div class="customize-form-group">
  36. <label>1待审核, 2审核, 3驳回:</label>
  37. <input name="orderStatus" placeholder="1待审核, 2审核, 3驳回" id="orderStatus" class="styled-input" type="text">
  38. </div>
  39. <div class="customize-form-group">
  40. <label>操作人:</label>
  41. <input name="operator" placeholder="操作人" id="operator" class="styled-input" type="text">
  42. </div>
  43. <div class="customize-form-group">
  44. <label>定金支付状态:1支付中,2未支付,3支付完成:</label>
  45. <input name="depositPaymentStatus" placeholder="定金支付状态:1支付中,2未支付,3支付完成" id="depositPaymentStatus" class="styled-input" type="text">
  46. </div>
  47. </div>
  48. </form>
  49. </div>
  50. <th:block th:include="include :: footer" />
  51. <th:block th:include="include :: ztree-js" />
  52. <script type="text/javascript">
  53. function submitHandler() {
  54. if ($.validate.form()) {
  55. add();
  56. }
  57. }
  58. function add() {
  59. var data = $("#form-SGkdgglCustomerOrderAudit-add").serializeArray();
  60. $.ajax({
  61. cache : true,
  62. type : "POST",
  63. url : ctx + "gkdggl/sgkdgglcustomerorderaudit/sGkdgglCustomerOrderAuditAdd",
  64. data : data,
  65. async : false,
  66. error : function(request) {
  67. $.modal.alertError("系统错误");
  68. },
  69. success : function(data) {
  70. $.operate.successCallback(data);
  71. }
  72. });
  73. }
  74. </script>
  75. </body>
  76. </html>