dept.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  4. <meta charset="utf-8">
  5. <head th:include="include :: header"></head>
  6. <body class="gray-bg">
  7. <div class="container-div">
  8. <div class="row">
  9. <div class="col-sm-12 search-collapse">
  10. <form id="dept-form">
  11. <div class="select-list">
  12. <ul>
  13. <li>
  14. 部门名称:<input type="text" name="deptName"/>
  15. </li>
  16. <li>
  17. 部门状态:<select name="status" th:with="type=${@dict.getType('sys_normal_disable')}">
  18. <option value="">所有</option>
  19. <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
  20. </select>
  21. </li>
  22. <li>
  23. <a class="btn btn-primary btn-rounded btn-sm" onclick="$.treeTable.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
  24. <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
  25. </li>
  26. </ul>
  27. </div>
  28. </form>
  29. </div>
  30. <div class="btn-group hidden-xs" id="toolbar" role="group">
  31. <a class="btn btn-outline btn-success btn-rounded" onclick="$.operate.add(100)" shiro:hasPermission="system:dept:add">
  32. <i class="fa fa-plus"></i> 新增
  33. </a>
  34. </div>
  35. <div class="col-sm-12 select-table table-striped">
  36. <table id="bootstrap-table" data-mobile-responsive="true"></table>
  37. </div>
  38. </div>
  39. </div>
  40. <div th:include="include :: footer"></div>
  41. <script th:inline="javascript">
  42. var addFlag = [[${@permission.hasPermi('system:dept:add')}]];
  43. var editFlag = [[${@permission.hasPermi('system:dept:edit')}]];
  44. var removeFlag = [[${@permission.hasPermi('system:dept:remove')}]];
  45. var datas = [[${@dict.getType('sys_normal_disable')}]];
  46. var prefix = ctx + "system/dept"
  47. $(function() {
  48. var options = {
  49. id: "deptId",
  50. parentId: "parentId",
  51. url: prefix + "/list",
  52. createUrl: prefix + "/add/{id}",
  53. updateUrl: prefix + "/edit/{id}",
  54. removeUrl: prefix + "/remove/{id}",
  55. modalName: "部门",
  56. columns: [{
  57. field: 'deptName',
  58. title: '部门名称',
  59. },
  60. {
  61. field: 'orderNum',
  62. title: '排序',
  63. align: "center"
  64. },
  65. {
  66. field: 'status',
  67. title: '状态',
  68. align: "center",
  69. formatter: function(value, item, index) {
  70. return $.table.selectDictLabel(datas, item.status);
  71. }
  72. },
  73. {
  74. field: 'createTime',
  75. title: '创建时间',
  76. align: "center"
  77. },
  78. {
  79. title: '操作',
  80. align: 'center',
  81. formatter: function(value, row, index) {
  82. if (row.parentId != 0) {
  83. var actions = [];
  84. actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="#" onclick="$.operate.edit(\'' + row.deptId + '\')"><i class="fa fa-edit">编辑</i></a> ');
  85. actions.push('<a class="btn btn-info btn-xs ' + addFlag + '" href="#" onclick="$.operate.add(\'' + row.deptId + '\')"><i class="fa fa-plus">新增</i></a> ');
  86. actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="remove(\'' + row.deptId + '\')"><i class="fa fa-remove">删除</i></a>');
  87. return actions.join('');
  88. } else {
  89. return "";
  90. }
  91. }
  92. }]
  93. };
  94. $.treeTable.init(options);
  95. });
  96. function remove(id) {
  97. $.modal.confirm("确定删除该条" + $.table._option.modalName + "信息吗?", function() {
  98. $.ajax({
  99. type : 'post',
  100. url: prefix + "/remove/" + id,
  101. success : function(result) {
  102. if (result.code == web_status.SUCCESS) {
  103. $.modal.msgSuccess(result.msg);
  104. $.treeTable.refresh();
  105. } else {
  106. $.modal.msgError(result.msg);
  107. }
  108. }
  109. });
  110. });
  111. }
  112. </script>
  113. </body>
  114. </html>