syscomparisonDetail.jsp 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  5. <c:set var="ctx" value="${pageContext.request.contextPath}"/>
  6. <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
  7. <script type="text/javascript">
  8. function afterOnload(){
  9. var afterLoadJs=[
  10. '${ctx}/js/hotent/formdata.js',
  11. '${ctx}/js/hotent/subform.js'
  12. ];
  13. ScriptMgr.load({
  14. scripts : afterLoadJs
  15. });
  16. }
  17. </script>
  18. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  19. <tr>
  20. <th width="20%">人员姓名:</th>
  21. <td>${syscomparison.fullname}</td>
  22. </tr>
  23. <tr>
  24. <th width="20%">身份证号:</th>
  25. <td>${syscomparison.card}</td>
  26. </tr>
  27. <tr>
  28. <th width="20%">单位:</th>
  29. <td>${syscomparison.unit}</td>
  30. </tr>
  31. <tr>
  32. <th width="20%">附件上传:</th>
  33. <td>${syscomparison.attachment}</td>
  34. </tr>
  35. <tr>
  36. <th width="20%">组织ID:</th>
  37. <td>${syscomparison.orgid}</td>
  38. </tr>
  39. <tr>
  40. <th width="20%">当前时间:</th>
  41. <td>
  42. <fmt:formatDate value="${syscomparison.ctime}" pattern="yyyy-MM-dd"/>
  43. </td>
  44. </tr>
  45. <tr>
  46. <th width="20%">页数:</th>
  47. <td>${syscomparison.num}</td>
  48. </tr>
  49. <tr>
  50. <th width="20%">KZ1:</th>
  51. <td>${syscomparison.kz1}</td>
  52. </tr>
  53. <tr>
  54. <th width="20%">KZ2:</th>
  55. <td>${syscomparison.kz2}</td>
  56. </tr>
  57. <tr>
  58. <th width="20%">KZ3:</th>
  59. <td>${syscomparison.kz3}</td>
  60. </tr>
  61. <tr>
  62. <th width="20%">KZ4:</th>
  63. <td>${syscomparison.kz4}</td>
  64. </tr>
  65. <tr>
  66. <th width="20%">KZ5:</th>
  67. <td>${syscomparison.kz5}</td>
  68. </tr>
  69. <tr>
  70. <th width="20%">KZ6:</th>
  71. <td>${syscomparison.kz6}</td>
  72. </tr>
  73. <tr>
  74. <th width="20%">KZ7:</th>
  75. <td>${syscomparison.kz7}</td>
  76. </tr>
  77. <tr>
  78. <th width="20%">KZ8:</th>
  79. <td>${syscomparison.kz8}</td>
  80. </tr>
  81. </table>