bpmNodeUserUplowGetByUserId.jsp 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@include file="/commons/include/html_doctype.html"%>
  4. <html>
  5. <head>
  6. <title>用户上下级查询预览</title>
  7. <%@include file="/commons/include/form.jsp" %>
  8. <script type="text/javascript" src="${ctx}/js/dynamic.jsp"></script>
  9. <script type="text/javascript" src="${ctx}/js/lg/plugins/ligerLayout.js"></script>
  10. <%-- <link href="${ctx}/styles/ligerUI/ligerui-all.css" rel="stylesheet" type="text/css" /> --%>
  11. <f:link href="Aqua/css/ligerui-all.css"></f:link>
  12. </head>
  13. <body>
  14. <table id="sysParamItem" cellpadding="1" cellspacing="1" class="table-grid">
  15. <head>
  16. <th style="text-align: center;">用户</th>
  17. </head>
  18. <tbody>
  19. <c:forEach items="${userList}" var="u">
  20. <tr>
  21. <td style="text-align: center;">${u.fullname } </td>
  22. </tr>
  23. </c:forEach>
  24. </tbody>
  25. </table>
  26. <div position="bottom" class="bottom" style='margin-top:10px'>
  27. <a href='#' class='button' onclick="frameElement.dialog.close()"><span >返回</span></a>
  28. </div>
  29. </body>
  30. </html>