sysOrgParamGetByParamKey.jsp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <%-- <link href="${ctx}/styles/ligerUI/ligerui-all.css" rel="stylesheet" type="text/css" /> --%>
  9. <f:link href="Aqua/css/ligerui-all.css"></f:link>
  10. <script type="text/javascript" src="${ctx}/js/lg/plugins/ligerLayout.js"></script>
  11. <script type="text/javascript">
  12. /*KILLDIALOG*/
  13. var dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
  14. $(function() {
  15. init();
  16. });
  17. function init(){
  18. //var obj = window.dialogArguments;
  19. var obj=dialog.get("obj");
  20. if(obj==null) return;
  21. var postFlag=$("#postFlag").val();
  22. if(postFlag==1) return;
  23. if(obj.flag==0 ){
  24. var url=obj.url;
  25. var param=obj.params;
  26. $.post(url, { orgParam:param,postflag:1 },
  27. function(data) {
  28. $('#result').html(data);
  29. });
  30. }
  31. }
  32. </script>
  33. </head>
  34. <body id="result">
  35. <table id="sysParamItem" cellpadding="1" cellspacing="1" class="table-grid">
  36. <head>
  37. <th style="text-align: center;">用户</th>
  38. </head>
  39. <tbody>
  40. <c:forEach items="${userList}" var="u">
  41. <tr>
  42. <td style="text-align: center;">${u.fullname } </td>
  43. </tr>
  44. </c:forEach>
  45. </tbody>
  46. </table>
  47. <input type="hidden" id="postFlag" name="postFlag" value="${postFlag}"/>
  48. <div position="bottom" class="bottom" style='margin-top:10px'>
  49. <a href='#' class='button' onclick="dialog.close()"><span >返回</span></a>
  50. </div>
  51. </body>
  52. </html>