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