edit.html 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE HTML>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org">
  3. <meta charset="utf-8">
  4. <head th:include="include :: header"></head>
  5. <link th:href="@{/ajax/libs/summernote/summernote.css}" rel="stylesheet"/>
  6. <link th:href="@{/ajax/libs/summernote/summernote-bs3.css}" rel="stylesheet"/>
  7. <body class="white-bg">
  8. <div class="wrapper wrapper-content animated fadeInRight ibox-content">
  9. <form class="form-horizontal m" id="form-notice-edit" th:object="${notice}">
  10. <input id="noticeId" name="noticeId" th:field="*{noticeId}" type="hidden">
  11. <div class="form-group">
  12. <label class="col-sm-3 control-label">公告标题:</label>
  13. <div class="col-sm-8">
  14. <input id="noticeTitle" name="noticeTitle" th:field="*{noticeTitle}" class="form-control" type="text">
  15. </div>
  16. </div>
  17. <div class="form-group">
  18. <label class="col-sm-3 control-label">公告类型:</label>
  19. <div class="col-sm-8">
  20. <select name="noticeType" class="form-control m-b" th:with="type=${@dict.getType('sys_notice_type')}">
  21. <option th:each="dict : ${type}" th:text="${dict['dictLabel']}" th:value="${dict['dictValue']}" th:field="*{noticeType}"></option>
  22. </select>
  23. </div>
  24. </div>
  25. <div class="form-group">
  26. <label class="col-sm-3 control-label">公告内容:</label>
  27. <div class="col-sm-8">
  28. <input id="noticeContent" name="noticeContent" th:field="*{noticeContent}" type="hidden">
  29. <div id="editor" class="summernote"></div>
  30. </div>
  31. </div>
  32. <div class="form-group">
  33. <label class="col-sm-3 control-label">公告状态:</label>
  34. <div class="col-sm-8" th:with="type=${@dict.getType('sys_notice_status')}">
  35. <div th:each="dict : ${type}" th:class="${dict['cssClass']}">
  36. <input type="radio" th:id="${dict['dictCode']}" name="status" th:value="${dict['dictValue']}" th:field="*{status}">
  37. <label th:for="${dict['dictCode']}" th:text="${dict['dictLabel']}"></label>
  38. </div>
  39. </div>
  40. </div>
  41. <div class="form-group">
  42. <div class="form-control-static col-sm-offset-9">
  43. <button type="submit" class="btn btn-primary">提交</button>
  44. <button onclick="$.modal.close()" class="btn btn-danger" type="button">关闭</button>
  45. </div>
  46. </div>
  47. </form>
  48. </div>
  49. <div th:include="include::footer"></div>
  50. <script th:src="@{/ajax/libs/summernote/summernote.min.js}"></script>
  51. <script th:src="@{/ajax/libs/summernote/summernote-zh-CN.js}"></script>
  52. <script type="text/javascript">
  53. $(function() {
  54. $('.summernote').summernote({
  55. height : '220px',
  56. lang : 'zh-CN'
  57. });
  58. var content = $("#noticeContent").val();
  59. $('#editor').code(content);
  60. });
  61. var prefix = ctx + "system/notice"
  62. $("#form-notice-edit").validate({
  63. rules:{
  64. xxxx:{
  65. required:true,
  66. },
  67. },
  68. submitHandler: function(form) {
  69. var sHTML = $('.summernote').code();
  70. $("#noticeContent").val(sHTML);
  71. $.operate.save(prefix + "/edit", $('#form-notice-edit').serialize());
  72. }
  73. });
  74. </script>
  75. </body>
  76. </html>