rolegrant.jsp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <title>通用平台</title>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <%@ include file="../common.jsp"%>
  10. <link rel="stylesheet" type="text/css" href="${app }/css/other.css" />
  11. <script type="text/javascript" src="${app}/js/base.js"></script>
  12. <script type="text/javascript" src="${app }/static/biz/js/role/rolemenufunc.js"></script>
  13. <script type="text/javascript">
  14. $(document).ready(function () {
  15. role.rolemenufunc.allData='${allMenu }';
  16. role.rolemenufunc.init();
  17. });
  18. </script>
  19. </head>
  20. <body>
  21. <div class="ch-container">
  22. <input type="hidden" id="roleid" value="${roleid }">
  23. <div class="row">
  24. <div class="box col-md-12">
  25. <div class="box-inner">
  26. <div class="box-header well" data-original-title="11">
  27. <h2><i class="glyphicon "></i> 系统设置&gt;角色授权</h2>
  28. </div>
  29. <div class="box-content">
  30. <table class="search_button_table" >
  31. <tr style="height:60px;">
  32. <td>
  33. </td>
  34. <td >
  35. </td>
  36. <td>
  37. <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.all()">
  38. <i class="glyphicon glyphicon-ok"></i>
  39. 全选</a>
  40. <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.notall()">
  41. <i class="glyphicon glyphicon-remove"></i>
  42. 全不选</a>
  43. <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.save()">
  44. <i class="glyphicon glyphicon-floppy-saved"></i>
  45. 保存</a>
  46. <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.back()">
  47. <i class="glyphicon glyphicon-circle-arrow-left"></i>
  48. 返回</a>
  49. </td>
  50. </tr>
  51. </table>
  52. <!-- 列表 -->
  53. <table class="table_ud">
  54. <thead>
  55. <tr>
  56. <th width="30%">菜单</th>
  57. <th width="10%">授权</th>
  58. </tr>
  59. </thead>
  60. <tbody id="divcontent">
  61. </tbody>
  62. </table>
  63. </div>
  64. </div>
  65. </div>
  66. <!--/span-->
  67. </div><!--/row-->
  68. </div>
  69. </body>
  70. </html>