⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 humanfile_list.jsp

📁 人力资源管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="/WEB-INF/tld/page.tld" prefix="page" %>

<html>
  <head>
    <base href="http://localhost:8080/accp_hr/"/>
    <title>简历筛选</title>

	<style type="text/css">
		th{
			background-color: #CCCCFF;
		}
		.texts{
			width: 130px;
		}
		.texts2{
			width: 200px;
		}
		
		td{
			background-color: #DADEDD;
		}
	</style>

  </head>
<BODY  bgcolor="#DADEDD" style="background-image: url('images/accphr/main.jpg');background-attachment :fixed ;">
	
   <html:form action="humanJoin" >
   <input type="hidden" name="ophj" value="toAddFind">

		<logic:notEmpty name="engageResumeForm" property="pageResult.list">
		<table border="1" cellspacing="0" align="center" width="95%" bordercolor="black" style="font-size: 12px">
			<tr>
				<th style="background-color:transparent;">姓名</th>
				<th style="background-color:transparent;">应聘职位</th>
				<th style="background-color:transparent;">特长</th>
				<th style="background-color:transparent;">年龄</th>
				<th style="background-color:transparent;">毕业院校</th>
				<th style="background-color:transparent;">申请状态</th>
				<th style="background-color:transparent;">审批状态</th>
			</tr>
		 <c:forEach var="item" items="${engageResumeForm.pageResult.list}">
		 	<tr>
				<td style="background-color:transparent;">${item.humanName }&nbsp;</td>
				<td style="background-color:transparent;">${item.humanMajorName }&nbsp;</td>
				<td style="background-color:transparent;">${item.humanSpecility }&nbsp;</td>
				<td style="background-color:transparent;">${item.humanAge }&nbsp;</td>
				<td style="background-color:transparent;">${item.humanCollege }&nbsp;</td>
				
				<td style="background-color:transparent;" align="center">
					<c:if test="${item.passRegister==null }">
						未申请
					</c:if>
					<c:if test="${item.passRegister!=null }">
						已申请
					</c:if>
				</td>
				
				<td style="background-color:transparent;" align="center">
					<c:if test="${item.passChecker==null }">
					未审批
					</c:if>
					<c:if test="${item.passChecker!=null }">
					已审批
					</c:if>
					
				</td>
			</tr>	
		
			
		 </c:forEach>
			
		</table>
		 <logic:notEmpty name="engageResumeForm" property="pageResult.list">
    			<page:link formName="engageResumeForm"/>
    		 </logic:notEmpty>
		</logic:notEmpty>
		<logic:empty name="engageResumeForm" property="pageResult.list">
	    	     <b>没有检索到您想要的信息</b>
	    </logic:empty>	
	</html:form>

</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -