| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib uri="http://fzywtx.com/jsp/yw/yr" prefix="yr"%>
- <%@ taglib uri="http://fzywtx.com/jsp/yw/select" prefix="l"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>离职原因</title>
- <link href="${pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css"></link>
- <link href="${pageContext.request.contextPath}/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css"></link>
- <script type="text/javascript" src="/shares/js/jquery-1.3.2.min.js"></script>
- <script type="text/javascript">
- </script>
- <style type="text/css">
- body {
- padding: 5px;
- margin: 0;
- }
- #layout1 {
- width: 99.5%;
- margin: 0;
- padding: 0;
- }
- .l-button {
- margin-left: 0px;
- }
- #selectBtn {
- height: 35px;
- padding-top: 3px;
- background: #e5ecf9;
- text-align: center;
- vertical-align: middle;
- }
- input[type='button'],input[type='submit'] {
- width: 80px;
- }
- .author-list {
- width: 90px;
- border: 1px solid #ededed;
- float: left;
- padding-top: 3px;
- overflow-x: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .table1 {
- margin: 2px 2px;
- width: 100%;
- background: #FFFFFF;
- font: Georgia 15px;
- font-size: 15px;
- color: #000000;
- /*text-align:center;*/
- border-collapse: collapse; /*细线表格代码*/
- }
- .table1 th {
- border: 1px solid #000000; /*细线表格线条颜色*/
- height: 35px;
- text-align: center;
- }
- .table1 td {
- border: 1px solid #000000; /*细线表格线条颜色*/
- height: 35px;
- padding-left: 5px;
- text-align: center;
- }
- </style>
- </head>
- <div>
- <table class="table1" style="width: 99%;" id="singerTable">
- <tr class="l-grid-hd-row" style="display:;">
- <th width="60px"><h3>序号</h3></th>
- <th width="60px"><h3>离职类型</h3></th>
- <th width="150px"><h3>离职时间</h3></th>
- <th width="270px"><h3>离职原因</h3></th>
- </tr>
- <c:forEach items="${dimissionInfos }" var="dimissionInfo" varStatus="status">
- <tr class="l-grid-hd-row" style="display:;">
- <td>${status.index+1 }</td>
- <td>${dimissionInfo.cause_type }</td>
- <td><fmt:formatDate value="${dimissionInfo.dimission_time }" pattern="yyyy-MM-dd"/>
- </td>
- <td>${dimissionInfo.remarks_content }</td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </html>
|