add.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. <body class="white-bg">
  6. <div class="wrapper wrapper-content animated fadeInRight ibox-content">
  7. <form class="form-horizontal m" id="form-dept-add">
  8. <input id="treeId" name="parentId" type="hidden" th:value="${dept.deptId}" />
  9. <div class="form-group">
  10. <label class="col-sm-3 control-label ">上级部门:</label>
  11. <div class="col-sm-8">
  12. <input class="form-control" type="text" onclick="selectDeptTree()" id="treeName" readonly="true" th:value="${dept.deptName}"/>
  13. </div>
  14. </div>
  15. <div class="form-group">
  16. <label class="col-sm-3 control-label">部门名称:</label>
  17. <div class="col-sm-8">
  18. <input class="form-control" type="text" name="deptName" id="deptName">
  19. </div>
  20. </div>
  21. <div class="form-group">
  22. <label class="col-sm-3 control-label">显示排序:</label>
  23. <div class="col-sm-8">
  24. <input class="form-control" type="text" name="orderNum">
  25. </div>
  26. </div>
  27. <div class="form-group">
  28. <label class="col-sm-3 control-label">负责人:</label>
  29. <div class="col-sm-8">
  30. <input class="form-control" type="text" name="leader">
  31. </div>
  32. </div>
  33. <div class="form-group">
  34. <label class="col-sm-3 control-label">联系电话:</label>
  35. <div class="col-sm-8">
  36. <input class="form-control" type="text" name="phone">
  37. </div>
  38. </div>
  39. <div class="form-group">
  40. <label class="col-sm-3 control-label">邮箱:</label>
  41. <div class="col-sm-8">
  42. <input class="form-control" type="text" name="email">
  43. </div>
  44. </div>
  45. <div class="form-group">
  46. <label class="col-sm-3 control-label">部门状态:</label>
  47. <div class="col-sm-8">
  48. <div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
  49. <input type="radio" th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}" th:checked="${dict.isDefault == 'Y' ? true : false}">
  50. <label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
  51. </div>
  52. </div>
  53. </div>
  54. </form>
  55. </div>
  56. <div th:include="include::footer"></div>
  57. <script type="text/javascript">
  58. var prefix = ctx + "system/dept";
  59. $("#form-dept-add").validate({
  60. rules:{
  61. deptName:{
  62. required:true,
  63. remote: {
  64. url: prefix + "/checkDeptNameUnique",
  65. type: "post",
  66. dataType: "json",
  67. data: {
  68. "parentId": function() {
  69. return $("input[name='parentId']").val();
  70. },
  71. "deptName" : function() {
  72. return $.common.trim($("#deptName").val());
  73. }
  74. },
  75. dataFilter: function(data, type) {
  76. return $.validate.unique(data);
  77. }
  78. }
  79. },
  80. orderNum:{
  81. required:true,
  82. digits:true
  83. },
  84. email:{
  85. email:true,
  86. },
  87. phone:{
  88. isPhone:true,
  89. },
  90. },
  91. messages: {
  92. "deptName": {
  93. remote: "部门已经存在"
  94. }
  95. }
  96. });
  97. function submitHandler() {
  98. if ($.validate.form()) {
  99. $.operate.save(prefix + "/add", $('#form-dept-add').serialize());
  100. }
  101. }
  102. /*部门管理-新增-选择父部门树*/
  103. function selectDeptTree() {
  104. var options = {
  105. title: '部门选择',
  106. width: "380",
  107. url: prefix + "/selectDeptTree/" + $("#treeId").val(),
  108. callBack: doSubmit
  109. };
  110. $.modal.openOptions(options);
  111. }
  112. function doSubmit(index, layero){
  113. var body = layer.getChildFrame('body', index);
  114. $("#treeId").val(body.find('#treeId').val());
  115. $("#treeName").val(body.find('#treeName').val());
  116. layer.close(index);
  117. }
  118. </script>
  119. </body>
  120. </html>