📄 engagesubject_update_find.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/firstquestion.js"></script>
<script type="text/javascript" src="accp_hr/interface/secondquestion.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" src="js/DateTime2.js"></script>
<script type="text/javascript">
<!--页面加载调用函数-->
window.onload=function(){
firstQ();
}
//试题一级
function firstQ()
{
firstquestion.findAll(null,showFirst);
}
function showFirst(gjitem){
DWRUtil.addOptions('stone',gjitem,'firstKindId','firstKindName');
}
</script>
<style type="text/css">
.texts{
width: 130px;
}
.texts2{
width: 200px;
}
.texts3{
width: 100%;
border-style : none;
}
</style>
</head>
<BODY bgcolor="#DADEDD" style="background-image: url('images/accphr/main.jpg');background-attachment :fixed ;">
<html:form action="engageSubjects" >
<input type="hidden" name="opes" value="toUpdateFind">
<table border="1" cellspacing="0" align="center" width="95%" bordercolor="black" style="font-size: 12px">
<TR>
<Th>职位分类</Th>
<TD colspan="5">
<html:select property="engageSubjects.firstKindId" styleId="stone" styleClass="texts" onchange="secondQ(this.value);" >
</html:select>
</TD>
</TR>
<tr>
<th>关键字</th>
<td colspan="6">
<html:text property="engageSubjects.content" styleClass="texts"></html:text>
</td>
</tr>
<tr>
<th>
登记时间
</th>
<td>
<html:text property="engageSubjects.register" onclick="setday(this);" styleClass="texts" ></html:text>
</td>
<th> </th>
<td colspan="2">
<html:text property="engageSubjects.changer" onclick="setday(this);" styleClass="texts" ></html:text>
</td>
<td>
<html:submit value=" 查询 " />
</td>
</tr>
</TABLE><br>
<logic:notEmpty name="engageSubjectsForm" 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="${engageSubjectsForm.pageResult.list}">
<tr>
<td style="background-color:transparent;">${item.content } </td>
<td style="background-color:transparent;">${item.firstKindName } </td>
<td style="background-color:transparent;">${item.register } </td>
<td style="background-color:transparent;">${item.registTime } </td>
<td style="background-color:transparent;">${item.correctKey } </td>
<td style="background-color:transparent;">
<a href='engageSubjects.do?opes=toUpdate&eid=${item.subId }'>更改</a>
<a href='engageSubjects.do?opes=doDel&eid=${item.subId }'>删除</a>
</td>
</tr>
</c:forEach>
</logic:notEmpty>
</table>
<logic:notEmpty name="engageSubjectsForm" property="pageResult.list">
<page:link formName="engageSubjectsForm"/>
</logic:notEmpty>
<logic:empty name="engageSubjectsForm" property="pageResult.list">
<b>没有检索到您想要的信息</b>
</logic:empty>
</html:form>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -