role.html 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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="role-form">
  11. <div class="select-list">
  12. <ul>
  13. <li>
  14. 角色名称:<input type="text" name="roleName"/>
  15. </li>
  16. <li>
  17. 权限字符:<input type="text" name="roleKey"/>
  18. </li>
  19. <li>
  20. 角色状态:<select name="status" th:with="type=${@dict.getType('sys_normal_disable')}">
  21. <option value="">所有</option>
  22. <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
  23. </select>
  24. </li>
  25. <li class="select-time">
  26. <label>创建时间: </label>
  27. <input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginTime]"/>
  28. <span>-</span>
  29. <input type="text" class="time-input" id="endTime" placeholder="结束时间" name="params[endTime]"/>
  30. </li>
  31. <li>
  32. <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
  33. <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
  34. </li>
  35. </ul>
  36. </div>
  37. </form>
  38. </div>
  39. <div class="btn-group-sm hidden-xs" id="toolbar" role="group">
  40. <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:role:add">
  41. <i class="fa fa-plus"></i> 新增
  42. </a>
  43. <a class="btn btn-primary btn-edit disabled" onclick="$.operate.edit()" shiro:hasPermission="system:role:edit">
  44. <i class="fa fa-edit"></i> 修改
  45. </a>
  46. <a class="btn btn-danger btn-del disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:role:remove">
  47. <i class="fa fa-remove"></i> 删除
  48. </a>
  49. <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:role:export">
  50. <i class="fa fa-download"></i> 导出
  51. </a>
  52. </div>
  53. <div class="col-sm-12 select-table table-striped">
  54. <table id="bootstrap-table" data-mobile-responsive="true"></table>
  55. </div>
  56. </div>
  57. </div>
  58. <div th:include="include :: footer"></div>
  59. <script th:inline="javascript">
  60. var editFlag = [[${@permission.hasPermi('system:role:edit')}]];
  61. var removeFlag = [[${@permission.hasPermi('system:role:remove')}]];
  62. var datas = [[${@dict.getType('sys_normal_disable')}]];
  63. var prefix = ctx + "system/role"
  64. $(function() {
  65. var options = {
  66. url: prefix + "/list",
  67. createUrl: prefix + "/add",
  68. updateUrl: prefix + "/edit/{id}",
  69. removeUrl: prefix + "/remove",
  70. exportUrl: prefix + "/export",
  71. sortName: "roleSort",
  72. modalName: "角色",
  73. search: false,
  74. showExport: false,
  75. columns: [{
  76. checkbox: true
  77. },
  78. {
  79. field: 'roleId',
  80. title: '角色编号'
  81. },
  82. {
  83. field: 'roleName',
  84. title: '角色名称',
  85. sortable: true
  86. },
  87. {
  88. field: 'roleKey',
  89. title: '权限字符',
  90. sortable: true
  91. },
  92. {
  93. field: 'roleSort',
  94. title: '显示顺序',
  95. sortable: true
  96. },
  97. {
  98. field: 'status',
  99. title: '状态',
  100. align: 'center',
  101. formatter: function(value, row, index) {
  102. return $.table.selectDictLabel(datas, value);
  103. }
  104. },
  105. {
  106. field: 'createTime',
  107. title: '创建时间',
  108. sortable: true
  109. },
  110. {
  111. title: '操作',
  112. align: 'center',
  113. formatter: function(value, row, index) {
  114. var actions = [];
  115. actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="#" onclick="$.operate.edit(\'' + row.roleId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
  116. actions.push('<a class="btn btn-primary btn-xs ' + removeFlag + '" href="#" onclick="rule(\'' + row.roleId + '\')"><i class="fa fa-check-square-o"></i>权限</a> ');
  117. actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="$.operate.remove(\'' + row.roleId + '\')"><i class="fa fa-remove"></i>删除</a>');
  118. return actions.join('');
  119. }
  120. }]
  121. };
  122. $.table.init(options);
  123. });
  124. /*角色管理-分配数据权限*/
  125. function rule(roleId) {
  126. var url = prefix + '/rule/' + roleId;
  127. $.modal.open("分配数据权限", url);
  128. }
  129. </script>
  130. </body>
  131. </html>