queryDimissionInfo.jsp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%@ taglib uri="http://fzywtx.com/jsp/yw/yr" prefix="yr"%>
  4. <%@ taglib uri="http://fzywtx.com/jsp/yw/select" prefix="l"%>
  5. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html;charset=GBK">
  10. <title>离职原因</title>
  11. <link href="${pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css"></link>
  12. <link href="${pageContext.request.contextPath}/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css"></link>
  13. <script type="text/javascript" src="/shares/js/jquery-1.3.2.min.js"></script>
  14. <script type="text/javascript">
  15. </script>
  16. <style type="text/css">
  17. body {
  18. padding: 5px;
  19. margin: 0;
  20. }
  21. #layout1 {
  22. width: 99.5%;
  23. margin: 0;
  24. padding: 0;
  25. }
  26. .l-button {
  27. margin-left: 0px;
  28. }
  29. #selectBtn {
  30. height: 35px;
  31. padding-top: 3px;
  32. background: #e5ecf9;
  33. text-align: center;
  34. vertical-align: middle;
  35. }
  36. input[type='button'],input[type='submit'] {
  37. width: 80px;
  38. }
  39. .author-list {
  40. width: 90px;
  41. border: 1px solid #ededed;
  42. float: left;
  43. padding-top: 3px;
  44. overflow-x: hidden;
  45. white-space: nowrap;
  46. text-overflow: ellipsis;
  47. }
  48. .table1 {
  49. margin: 2px 2px;
  50. width: 100%;
  51. background: #FFFFFF;
  52. font: Georgia 15px;
  53. font-size: 15px;
  54. color: #000000;
  55. /*text-align:center;*/
  56. border-collapse: collapse; /*细线表格代码*/
  57. }
  58. .table1 th {
  59. border: 1px solid #000000; /*细线表格线条颜色*/
  60. height: 35px;
  61. text-align: center;
  62. }
  63. .table1 td {
  64. border: 1px solid #000000; /*细线表格线条颜色*/
  65. height: 35px;
  66. padding-left: 5px;
  67. text-align: center;
  68. }
  69. </style>
  70. </head>
  71. <div>
  72. <table class="table1" style="width: 99%;" id="singerTable">
  73. <tr class="l-grid-hd-row" style="display:;">
  74. <th width="60px"><h3>序号</h3></th>
  75. <th width="60px"><h3>离职类型</h3></th>
  76. <th width="150px"><h3>离职时间</h3></th>
  77. <th width="270px"><h3>离职原因</h3></th>
  78. </tr>
  79. <c:forEach items="${dimissionInfos }" var="dimissionInfo" varStatus="status">
  80. <tr class="l-grid-hd-row" style="display:;">
  81. <td>${status.index+1 }</td>
  82. <td>${dimissionInfo.cause_type }</td>
  83. <td><fmt:formatDate value="${dimissionInfo.dimission_time }" pattern="yyyy-MM-dd"/>
  84. </td>
  85. <td>${dimissionInfo.remarks_content }</td>
  86. </tr>
  87. </c:forEach>
  88. </table>
  89. </div>
  90. </html>