1234567891011121314151617181920212223242526272829303132 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>用户上下级查询预览</title>
- <%@include file="/commons/include/form.jsp" %>
- <script type="text/javascript" src="${ctx}/js/dynamic.jsp"></script>
- <script type="text/javascript" src="${ctx}/js/lg/plugins/ligerLayout.js"></script>
- <%-- <link href="${ctx}/styles/ligerUI/ligerui-all.css" rel="stylesheet" type="text/css" /> --%>
- <f:link href="Aqua/css/ligerui-all.css"></f:link>
- </head>
- <body>
- <table id="sysParamItem" cellpadding="1" cellspacing="1" class="table-grid">
- <head>
- <th style="text-align: center;">用户</th>
- </head>
- <tbody>
- <c:forEach items="${userList}" var="u">
- <tr>
- <td style="text-align: center;">${u.fullname } </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- <div position="bottom" class="bottom" style='margin-top:10px'>
- <a href='#' class='button' onclick="frameElement.dialog.close()"><span >返回</span></a>
- </div>
- </body>
- </html>
|