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

📄 engageinterview_check_find.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>

	<script type="text/javascript" src="accp_hr/interface/MojarkModel.js"></script>
	<script type="text/javascript" src="accp_hr/interface/MojarModel.js"></script>
	<script type="text/javascript" src="accp_hr/engine.js"></script>
	<script type="text/javascript" src="accp_hr/util.js"></script>
	
	<script language="javascript" src="js/date.js" ></script>

	<script type="text/javascript">


		<!--页面加载调用函数-->
		window.onload=function(){
		
			zwflfind();
		

		}
		
		//下拉框 ---未选择项
		function newoption(){
			nop=new Option();
			nop.value="";
			nop.text="---未选择---";
			return nop;
		}
		
		
		
		//职位分类
		function zwflfind(){
			MojarkModel.findAll(showZwfl);
		}
		function showZwfl(zwitem){
			var temps=$('zwfl').value;
			$('zwfl').add(newoption());
			for(var i=0;i<zwitem.length;i++){
				op=new Option();
				op.value=zwitem[i].majorKindId;
				op.text=zwitem[i].majorKindName;
				if(zwitem[i].majorKindId==temps){
					op.selected=true;
				}
				$('zwfl').add(op);
			}
			zhiweifind($('zwfl').value);
		}
		//职位
		function zhiweifind(mid){
			if(mid==''){
				$('zhiwei').options.length=0;
				$('zhiwei').options.add(newoption());
			}else{
				MojarModel.findAll(mid,showZhiwei);
			}
		}
		function showZhiwei(zwitems){
			$('zhiwei').options.length=0;
			var temp=$('zhiwei').value;
			for(var i=0;i<zwitems.length;i++){
				ops=new Option();
				ops.value=zwitems[i].makId;
				ops.text=zwitems[i].majorName;
				if(zwitems[i].makId==temp){
					ops.selected=true;
				}
				$('zhiwei').options.add(ops);
			}
			
		}
	</script>
	<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="engageInterview" >
   <input type="hidden" name="opei" value="toCheckFind">

  
		<table border="1" cellspacing="0" align="center" width="95%" bordercolor="black" style="font-size: 12px">
		<TR>
			<Th>职位分类</Th>
			<TD width="10%">
				
				<html:select property="engageInterview.humanMajorKindId" styleId="zwfl" onchange="zhiweifind(this.value);" styleClass="texts" >
   					
   				</html:select>
			</TD>
			<Th>&nbsp;</Th>
			<TD colspan="4">
				<html:select property="engageInterview.humanMajorId" styleId="zhiwei" styleClass="texts" >
   					
   				</html:select>
			</TD>
			
		</TR>
		<tr>
			<th>关键字</th>
			<td colspan="5">
				<html:text property="engageInterview.humanName" styleClass="texts"></html:text>
			</td>
			<td align="center"><html:submit value="提交" /></td>
		</tr>
		
		</TABLE><br>
		<logic:notEmpty name="engageInterviewForm" 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>
				
			</tr>
		 <c:forEach var="item" items="${engageInterviewForm.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.register }&nbsp;</td>
				<td style="background-color:transparent;">${item.registeTime }&nbsp;</td>
				<td style="background-color:transparent;">${item.multiQualityDegree }&nbsp;</td>
				<td style="background-color:transparent;" align="center">
					<logic:empty name="item" property="result">
					<a href='engageInterview.do?opei=toCheck&eid=${item.einId }'>筛选</a>
					</logic:empty>&nbsp;
				</td>
			</tr>	
		 </c:forEach>
			
		</table>
		 <logic:notEmpty name="engageInterviewForm" property="pageResult.list">
    			<page:link formName="engageInterviewForm"/>
    		 </logic:notEmpty>
		</logic:notEmpty>
		<logic:empty name="engageInterviewForm" property="pageResult.list">
	    	     <b>没有检索到您想要的信息</b>
	    </logic:empty>	
	</html:form>

</BODY>
</HTML>

⌨️ 快捷键说明

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