📄 personrecords.jsp
字号:
<%@ include file="../sys/sessioncheck.jsp"%><%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>订单以找到人员一览</title>
<link href="css/1.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style5 {color: #0000FF}
-->
</style>
</head>
<body >
<p><!--webbot bot="Navigation" S-Type="global" S-Orientation="horizontal"
S-Rendering="text" B-Include-Home="TRUE" B-Include-Up="FALSE" U-Page S-Target startspan
-->
</p>
<c:set var="person_id" value="${person_id}"/>
<c:set var="person_name" value="${person_name}"/>
<form name="form1" method="post" ><p class="tilte">履历管理</p>
<p>
人员id:<c:out value="${param.person_id}"/>
人员姓名:<c:out value="${param.person_name}"/>
</p>
<input type="hidden" name="person_id" value="${param.person_id}"/>
<input type="hidden" name="order_id" value="${param.order_id}"/>
<table width="97%" height="52" border="0" cellspacing="1">
<tr bgcolor="#DDDDDD">
<td valign="middle" width="8%" height="23">订单编号</td>
<td valign="middle" width="9%" height="23">客户公司</td>
<td valign="middle" width="13%" height="23">担当者</td>
<td valign="middle" width="13%" height="23">内部面试履历</td>
<td valign="middle" width="12%" height="23">客户面试履历</td>
</tr>
<c:forEach var="list" items="${listPersonRecords}">
<tr bgcolor="#F0F0F0">
<td valign="middle" width="8%" height="20"><c:out value="${list.order_id}" /></td>
<td valign="middle" width="9%" height="20"><c:out value="${list.customer_name}" /></td>
<td valign="middle" width="13%" height="20"><c:out value="${list.belongto}" /></td>
<c:url value="toInnerAction.do" var="addinner"> <c:param name="order_id" value="${list.order_id}"/> <c:param name="person_id" value="${param.person_id}"/> </c:url> <c:url value="viewInnerCheckAction.do" var="viewinner"> <c:param name="order_id" value="${list.order_id}"/> <c:param name="person_id" value="${param.person_id}"/> </c:url> <c:url value="toCustomerCheckAction.do" var="addcustomer"> <c:param name="order_id" value="${list.order_id}"/> <c:param name="person_id" value="${param.person_id}"/> </c:url> <c:url value="viewCustomCheckAction.do" var="viewcustomer"> <c:param name="person_id" value="${param.person_id}"/> <c:param name="order_id" value="${list.order_id}"/> </c:url> <c:choose> <c:when test="${list.check_id==0}">
<td valign="middle" height="20"><a href="<c:out value="${addinner}"/>">新建</td>
</c:when> <c:otherwise>
<td valign="middle" height="20"><a href="<c:out value="${viewinner}"/>">详情</td>
</c:otherwise> </c:choose> <c:choose> <c:when test="${list.cuscheck_id==0}">
<td width="21%" height="20" valign="middle"><a href="<c:out value="${addcustomer}"/>">新建</td>
</c:when> <c:otherwise>
<td width="24%" height="20" valign="middle"><a href="<c:out value="${viewcustomer}"/>">详情</td>
</c:otherwise> </c:choose> </tr>
</c:forEach>
</table>
<br>
</form>
</body>
<c:remove var="list"/>
<c:remove var="order_id"/>
<c:remove var="person_id"/>
<c:remove var="person_name"/>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -