sysAuditGet.jsp 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <%--
  2. time:2011-11-26 11:35:04
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>详细信息</title>
  9. <%@include file="/commons/include/getById.jsp" %>
  10. </head>
  11. <script type="text/javascript" src="${ctx}/js/hotent/platform/system/SysAuditLink.js"></script>
  12. <script type="text/javascript">
  13. //系统日志的详细信息的超链接
  14. $(function(){
  15. SysAuditLink.initLink();
  16. });
  17. </script>
  18. <body>
  19. <div class="panel">
  20. <div class="hide-panel">
  21. <div class="panel-top">
  22. <div class="tbar-title">
  23. <span class="tbar-label">详细信息</span>
  24. </div>
  25. <div class="panel-toolbar">
  26. <div class="toolBar">
  27. <div class="group"><a class="link back" href="../sysAudit/list.ht"><span></span>返回</a></div>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="panel-body">
  33. <form id="sysAuditForm" method="post" action="add2.ht">
  34. <div class="panel-detail">
  35. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  36. <tr>
  37. <th width="20%">操作名称:</th>
  38. <td>${sysAudit.opName}</td>
  39. </tr>
  40. <tr>
  41. <th width="20%">执行时间:</th>
  42. <td><fmt:formatDate value="${sysAudit.exeTime}" pattern="yyyy-MM-dd HH:mm"/></td>
  43. </tr>
  44. <tr>
  45. <th width="20%">执行人:</th>
  46. <td><a href="javascript:;" hrefLink="${ctx}/platform/system/sysUser/getByUserId.ht?userId=${sysAudit.executorId}">${sysAudit.executor}</a></td>
  47. </tr>
  48. <tr>
  49. <th width="20%">IP:</th>
  50. <td>${sysAudit.fromIp}</td>
  51. </tr>
  52. <tr>
  53. <th width="20%">归属模块:</th>
  54. <td>${sysAudit.ownermodel}</td>
  55. </tr>
  56. <tr>
  57. <th width="20%">日志类型:</th>
  58. <td>${sysAudit.exectype}</td>
  59. </tr>
  60. <tr>
  61. <th width="20%">执行方法:</th>
  62. <td>${sysAudit.exeMethod}</td>
  63. </tr>
  64. <tr>
  65. <th width="20%">请求URL:</th>
  66. <td>${sysAudit.requestURI}</td>
  67. </tr>
  68. <tr>
  69. <th width="20%">详细信息:</th>
  70. <td>${sysAudit.detail}</td>
  71. </tr>
  72. </table>
  73. </div>
  74. </form>
  75. </div>
  76. </div>
  77. </body>
  78. </html>