approve.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 :: datetimepicker-css"/>
  6. </head>
  7. <body class="white-bg">
  8. <div class="wrapper wrapper-content animated fadeInRight ibox-content">
  9. <form class="form-horizontal m" id="form-process-add">
  10. <input name="pId" th:field="*{productInfo.id}" type="hidden">
  11. <div class="form-group">
  12. <label class="col-sm-3 control-label">商品名称:</label>
  13. <div class="col-sm-8">
  14. <input name="premiumAmt" th:field="*{productInfo.skuName}" readonly="true"
  15. class="form-control" type="text">
  16. </div>
  17. </div>
  18. <div class="form-group">
  19. <label class="col-sm-3 control-label is-required">下架:</label>
  20. <div class="col-sm-8">
  21. <div class="radio">
  22. <label class="radio-box">
  23. <input type="radio" checked="" value="04" name="processStsCd">通过</label>
  24. <label class="radio-box">
  25. <input type="radio" value="03" name="processStsCd">未通过</label>
  26. </div>
  27. </div>
  28. </div>
  29. <div>
  30. <label class="col-sm-3 control-label">未通过原因:</label>
  31. <div class="col-sm-8">
  32. <textarea name="rejectReason" class="form-control"></textarea>
  33. </div>
  34. </div>
  35. </form>
  36. </div>
  37. <th:block th:include="include :: footer"/>
  38. <th:block th:include="include :: datetimepicker-js"/>
  39. <script th:inline="javascript">
  40. var prefix = ctx + "opt/process"
  41. $("#form-process-add").validate({
  42. focusCleanup: true
  43. });
  44. function submitHandler() {
  45. if ($.validate.form()) {
  46. $.operate.save(prefix + "/edit", $('#form-process-add').serialize());
  47. }
  48. }
  49. </script>
  50. </body>
  51. </html>