add.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 class="form-horizontal m" id="form-role-add">
  10. <div class="form-group">
  11. <label class="col-sm-3 control-label ">角色名称:</label>
  12. <div class="col-sm-8">
  13. <input class="form-control" type="text" name="roleName" id="roleName" required>
  14. </div>
  15. </div>
  16. <div class="form-group">
  17. <label class="col-sm-3 control-label">权限字符:</label>
  18. <div class="col-sm-8">
  19. <input class="form-control" type="text" name="roleKey" id="roleKey" required>
  20. <span class="help-block m-b-none"><i class="fa fa-info-circle"></i> 控制器中定义的权限字符,如:@RequiresRoles("")</span>
  21. </div>
  22. </div>
  23. <div class="form-group">
  24. <label class="col-sm-3 control-label">显示顺序:</label>
  25. <div class="col-sm-8">
  26. <input class="form-control" type="text" name="roleSort" id="roleSort" required>
  27. </div>
  28. </div>
  29. <div class="form-group">
  30. <label class="col-sm-3 control-label">状态:</label>
  31. <div class="col-sm-8">
  32. <label class="toggle-switch switch-solid">
  33. <input type="checkbox" id="status" checked>
  34. <span></span>
  35. </label>
  36. </div>
  37. </div>
  38. <div class="form-group">
  39. <label class="col-sm-3 control-label">备注:</label>
  40. <div class="col-sm-8">
  41. <input id="remark" name="remark" class="form-control" type="text">
  42. </div>
  43. </div>
  44. <div class="form-group">
  45. <label class="col-sm-3 control-label">菜单权限</label>
  46. <div class="col-sm-8">
  47. <div id="menuTrees" class="ztree"></div>
  48. </div>
  49. </div>
  50. </form>
  51. </div>
  52. <th:block th:include="include :: footer" />
  53. <th:block th:include="include :: ztree-js" />
  54. <script type="text/javascript">
  55. $(function() {
  56. var url = ctx + "system/menu/roleMenuTreeData";
  57. var options = {
  58. id: "menuTrees",
  59. url: url,
  60. check: { enable: true },
  61. expandLevel: 0
  62. };
  63. $.tree.init(options);
  64. });
  65. $("#form-role-add").validate({
  66. rules:{
  67. onkeyup: false,
  68. roleName:{
  69. remote: {
  70. url: ctx + "system/role/checkRoleNameUnique",
  71. type: "post",
  72. dataType: "json",
  73. data: {
  74. "roleName" : function() {
  75. return $.common.trim($("#roleName").val());
  76. }
  77. },
  78. dataFilter: function(data, type) {
  79. return $.validate.unique(data);
  80. }
  81. }
  82. },
  83. roleKey:{
  84. remote: {
  85. url: ctx + "system/role/checkRoleKeyUnique",
  86. type: "post",
  87. dataType: "json",
  88. data: {
  89. "roleName" : function() {
  90. return $.common.trim($("#roleName").val());
  91. }
  92. },
  93. dataFilter: function(data, type) {
  94. return $.validate.unique(data);
  95. }
  96. }
  97. },
  98. roleSort:{
  99. digits:true
  100. },
  101. },
  102. messages: {
  103. "roleName": {
  104. remote: "角色名称已经存在"
  105. },
  106. "roleKey": {
  107. remote: "角色权限已经存在"
  108. }
  109. },
  110. focusCleanup: true
  111. });
  112. function submitHandler() {
  113. if ($.validate.form()) {
  114. add();
  115. }
  116. }
  117. function add() {
  118. var roleName = $("input[name='roleName']").val();
  119. var roleKey = $("input[name='roleKey']").val();
  120. var roleSort = $("input[name='roleSort']").val();
  121. var status = $("input[id='status']").is(':checked') == true ? 0 : 1;
  122. var remark = $("input[name='remark']").val();
  123. var menuIds = $.tree.getCheckedNodes();
  124. $.ajax({
  125. cache : true,
  126. type : "POST",
  127. url : ctx + "system/role/add",
  128. data : {
  129. "roleName": roleName,
  130. "roleKey": roleKey,
  131. "roleSort": roleSort,
  132. "status": status,
  133. "remark": remark,
  134. "menuIds": menuIds
  135. },
  136. async : false,
  137. error : function(request) {
  138. $.modal.alertError("系统错误");
  139. },
  140. success : function(data) {
  141. $.operate.successCallback(data);
  142. }
  143. });
  144. }
  145. </script>
  146. </body>
  147. </html>