📄 engageresume_filter.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=-1;
nop.text="---未选择---";
return nop;
}
//职位分类
function zwflfind(){
MojarkModel.findAll(showZwfl);
}
function showZwfl(zwitem){
DWRUtil.addOptions('zwfl',zwitem,'majorKindId','majorKindName');
zhiweifind(zwitem[0].majorKindId);
}
//职位
function zhiweifind(mid){
MojarModel.findAll(mid,showZhiwei);
}
function showZhiwei(zwitem){
$('zhiwei').options.length=0;
DWRUtil.addOptions('zhiwei',zwitem,'makId','majorName');
}
</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="engageResume" >
<input type="hidden" name="oper" value="toFilter">
<table border="1" cellspacing="0" align="center" width="95%" bordercolor="black" style="font-size: 12px">
<TR>
<Th>职位分类</Th>
<TD width="10%">
<html:select property="engageResume.humanMajorKindId" styleId="zwfl" onchange="zhiweifind(this.value);" styleClass="texts" >
</html:select>
</TD>
<Th> </Th>
<TD colspan="3">
<html:select property="engageResume.humanMajorId" styleId="zhiwei" styleClass="texts" >
</html:select>
</TD>
</TR>
<tr>
<th>关键字</th>
<td colspan="6">
<html:text property="engageResume.humanName" styleClass="texts"></html:text>
</td>
</tr>
<tr>
<th>
登记时间
</th>
<td>
<html:text property="engageResume.remark" onclick="setday(this);" styleClass="texts" readonly="true" ></html:text>
</td>
<th> </th>
<td colspan="2">
<html:text property="engageResume.attachmentName" onclick="setday(this);" styleClass="texts" readonly="true" ></html:text>
</td>
<td><html:submit value="提交" /></td>
</tr>
</TABLE><br>
<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>
</tr>
<c:forEach var="item" items="${engageResumeForm.pageResult.list}">
<tr>
<td style="background-color:transparent;">${item.humanName } </td>
<td style="background-color:transparent;">${item.humanMajorName } </td>
<td style="background-color:transparent;">${item.humanSpecility } </td>
<td style="background-color:transparent;">${item.humanAge } </td>
<td style="background-color:transparent;">${item.humanCollege } </td>
<td style="background-color:transparent;" align="center">
<logic:empty name="item" property="checkStatus">
<a href="engageResume.do?oper=doDel&eid=${item.resId }">删除</a>
<a href="engageResume.do?oper=toUpdate&eid=${item.resId }">修改</a>
</logic:empty>
</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 + -