<%@include file="/auth.jsp"%> <%@page import="com.zky.manager.Util" %> <%@ page import="com.zky.bjca.SM4" %> <%@ page import="cn.org.bjca.utils.Base64" %> <%@page language="java" contentType="text/html;charset=utf-8"%> <jsp:useBean id="getPara" scope="application" class="com.zky.para.SyncPara"/> <% HashFmlBuf buf=(HashFmlBuf)request.getAttribute("by_leaveId"); %> <html> <head> <meta http-equiv="Content-Type" content="text/html;"> <title>离岗报告</title> <link href="../../../css/font.css" rel="stylesheet" type="text/css"> <link rel="stylesheet" type="text/css" href="../../../js/2k3Menu.css"> <link rel="stylesheet" type="text/css" href="../../../js/2k3Dialog.css"> <script src="/js/check.js"></script> <style type="text/css"> html { overflow-x:hidden; overflow-y:hidden; } .td1{ width: 30%; } table#csstable{ border-top:#D8E9FE 1px solid; border-left:#D8E9FE 1px solid; } table#csstable td{ border-bottom:#D8E9FE 1px solid; border-right:#D8E9FE 1px solid; } </style> </head> <body> <h3 align="center">离岗报告</h3> <table id="csstable" width="90%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td class="cell3">批准人</td> <td class="cell4"> <%if(buf.fget("empid",0).equals("")){ %> 未填写 <%}else{ %> <%=buf.fget("empid",0)%> <%} %> </td> </tr> <tr bgcolor="#FFFFFF"> <td class="cell3">离岗人员</td> <td class="cell4"> <%=buf.fget("leave_name",0) %> </td> </tr> <tr> <td class="cell3">填报时间</td> <td class="cell4"> <%=buf.fget("leave_time",0) %> </td> </tr> <tr bgcolor="#FFFFFF"> <td class="cell3" >离岗原因</td> <td class="cell3" align="left"> <textarea rows="20" cols="85"><%=SM4.SM4Decrypt(Base64.decode(buf.fget("leave_reason",0))) %></textarea></td> </tr> </table><br> </body> </html>