role.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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-success btn-rounded btn-sm" onclick="$.table.exportExcel()" shiro:hasPermission="system:role:export"><i class="fa fa-download"></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-primary" onclick="$.operate.add()" shiro:hasPermission="system:role:add">
  41. <i class="fa fa-plus"></i> 添加
  42. </a>
  43. <a class="btn btn-danger btn-del disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:role:remove">
  44. <i class="fa fa-remove"></i> 删除
  45. </a>
  46. </div>
  47. <div class="col-sm-12 select-table table-striped">
  48. <table id="bootstrap-table" data-mobile-responsive="true"></table>
  49. </div>
  50. </div>
  51. </div>
  52. <div th:include="include :: footer"></div>
  53. <script th:inline="javascript">
  54. var editFlag = [[${@permission.hasPermi('system:role:edit')}]];
  55. var removeFlag = [[${@permission.hasPermi('system:role:remove')}]];
  56. var datas = [[${@dict.getType('sys_normal_disable')}]];
  57. var prefix = ctx + "system/role"
  58. $(function() {
  59. var options = {
  60. url: prefix + "/list",
  61. createUrl: prefix + "/add",
  62. updateUrl: prefix + "/edit/{id}",
  63. removeUrl: prefix + "/remove",
  64. exportUrl: prefix + "/export",
  65. sortName: "roleSort",
  66. modalName: "角色",
  67. search: false,
  68. showExport: false,
  69. columns: [{
  70. checkbox: true
  71. },
  72. {
  73. field: 'roleId',
  74. title: '角色编号'
  75. },
  76. {
  77. field: 'roleName',
  78. title: '角色名称',
  79. sortable: true
  80. },
  81. {
  82. field: 'roleKey',
  83. title: '权限字符',
  84. sortable: true
  85. },
  86. {
  87. field: 'roleSort',
  88. title: '显示顺序',
  89. sortable: true
  90. },
  91. {
  92. field: 'status',
  93. title: '状态',
  94. align: 'center',
  95. formatter: function(value, row, index) {
  96. return $.table.selectDictLabel(datas, value);
  97. }
  98. },
  99. {
  100. field: 'createTime',
  101. title: '创建时间',
  102. sortable: true
  103. },
  104. {
  105. title: '操作',
  106. align: 'center',
  107. formatter: function(value, row, index) {
  108. var actions = [];
  109. actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="#" onclick="$.operate.edit(\'' + row.roleId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
  110. actions.push('<a class="btn btn-primary btn-xs ' + removeFlag + '" href="#" onclick="rule(\'' + row.roleId + '\')"><i class="fa fa-check-square-o"></i>权限</a> ');
  111. actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="$.operate.remove(\'' + row.roleId + '\')"><i class="fa fa-remove"></i>删除</a>');
  112. return actions.join('');
  113. }
  114. }]
  115. };
  116. $.table.init(options);
  117. });
  118. /*角色管理-分配数据权限*/
  119. function rule(roleId) {
  120. var url = prefix + '/rule/' + roleId;
  121. $.modal.open("分配数据权限", url);
  122. }
  123. </script>
  124. </body>
  125. </html>