📄 viewcustomercheck.jsp
字号:
<%@ include file="../sys/sessioncheck.jsp"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/1.css" rel="stylesheet" type="text/css">
</head>
<SCRIPT language="JavaScript">
function update()
{
form1.action="initUpdateCustomCheckAction.do";
form1.submit();
}
function print()
{
form1.action = "printpdf3";
form1.submit();
}
</script>
<c:set value="${customcheck}" var="customcheck"/>
<body>
<c:set value="${person_id}" var="person_id"/>
<c:set value="${order_id}" var="order_id"/>
<c:url value="/DetailPersonAction.do" var="viewPerson">
<c:param name="person_id" value="${param.person_id}" />
</c:url>
<p>订单号:<c:out value="${param.order_id}" /> </p>
<p>人员编号:<a href='<c:out value="${viewPerson}"/>'><c:out value="${param.person_id}" /></a>
</p>
<p>履历性质:客户面试</p>
<form name="form1" method="POST">
<p><input type="hidden" name="person_id" value="<c:out value="${param.person_id}"/>">
<input type="hidden" name="order_id" value="<c:out value="${param.order_id}"/>">
</p>
<p><input type="button" value="修改" name="B1" onclick="update()">
<input type="button" value="打印" name="B2" onclick="print()"></p>
<table width="71%" height="103" border="0" cellspacing="1">
<tr>
<td width="25%" height="24" bgcolor="#DDDDDD">面试日期</td>
<td width="25%" height="24" bgcolor="#F0F0F0"><c:out value="${customcheck.check_time}" /></td>
<td width="25%" height="24" bgcolor="#DDDDDD"> </td>
<td width="25%" height="24" bgcolor="#F0F0F0"></td>
</tr>
<tr>
<td width="25%" height="11" bgcolor="#DDDDDD">人事部</td>
<td width="25%" height="11" bgcolor="#F0F0F0"><c:out value="${customcheck.ministry_of_personnel}" /></td>
<td width="25%" height="11" bgcolor="#DDDDDD">部门</td>
<td width="25%" height="11" bgcolor="#F0F0F0"><c:out value="${customcheck.department}" /></td>
</tr>
<tr>
<td width="25%" height="7" bgcolor="#DDDDDD">面试者</td>
<td width="25%" height="7" bgcolor="#F0F0F0"><c:out value="${customcheck.checher}" /></td>
<td width="25%" height="7" bgcolor="#DDDDDD">检验推荐职务</td>
<td width="25%" height="7" bgcolor="#F0F0F0"><c:out value="${customcheck.confirm_domain_no}" /></td>
</tr>
</table>
<table width="71%" height="100" border="0" cellspacing="1">
<tr>
<td width="50%" height="41" bgcolor="#DDDDDD">审查</td>
<c:if test="${customcheck.confirm==true}">
<td width="50%" height="41" bgcolor="#F0F0F0">通过</td>
</c:if>
<c:if test="${customcheck.confirm==false}">
<td width="50%" height="41" bgcolor="#F0F0F0">失败</td>
</c:if>
</tr>
<tr>
<td width="50%" height="47" bgcolor="#DDDDDD">判断理由</td>
<td width="50%" height="47" bgcolor="#F0F0F0"><c:out value="${customcheck.reason}" /></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -