simple_role.jsp 604 B

1234567891011121314151617181920212223
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: Administrator
  4. Date: 2018/4/12 0012
  5. Time: 15:19
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>无框架的权限管理界面</title>
  12. <script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js"></script>
  13. </head>
  14. <body>
  15. <jsp:include page="authority.jsp"></jsp:include>
  16. <script>
  17. var home_base = "${base}";
  18. $(function () {
  19. myInit();
  20. })
  21. </script>
  22. </body>
  23. </html>