📄 majorrelease_check.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="js/DateTime2.js"></script>
<script language="javascript" src="js/date.js" ></script>
<style type="text/css">
.texts{
width:130px;
}
.texts3{
background-color: transparent;
border-style: none;
}
</style>
</head>
<body bgcolor="#DADEDD" style="background-image: url('images/accphr/main.jpg');background-attachment :fixed ;">
<center>职位调动修改查询</center>
<br>
<html:form action="majorRelease" onsubmit="return tijiao();">
<input type="hidden" name="opmr" value="doUpdate">
<input type="hidden" name="majorRelease.mreId" value="${majorReleaseForm.majorRelease.mreId }">
<table border="1" cellspacing="0" align="center" width="95%" bordercolor="black" style="font-size: 12px">
<tr>
<th>Ⅰ级机构</th>
<td>
<input type="hidden" name="majorRelease.firstKindId" value="${majorReleaseForm.majorRelease.firstKindId }" id="fkn">
<html:text property="majorRelease.firstKindName" readonly="true" styleClass="texts3"></html:text>
</td>
<th>Ⅱ级机构</th>
<td>
<input type="hidden" name="majorRelease.secondKindId" value="${majorReleaseForm.majorRelease.secondKindId }" id="skn">
<html:text property="majorRelease.secondKindName" readonly="true" styleClass="texts3"></html:text>
</td>
<th>Ⅲ级机构</th>
<td>
<input type="hidden" name="majorRelease.thirdKindId" value="${majorReleaseForm.majorRelease.thirdKindId }" id="tkn">
<html:text property="majorRelease.thirdKindName" readonly="true" styleClass="texts3"></html:text>
</td>
<th>招聘类型</th>
<td>
<html:select property="majorRelease.engageType">
<html:option value="社会招聘">社会招聘</html:option>
<html:option value="校园招聘">校园招聘</html:option>
</html:select>
</td>
</tr>
<tr>
<th>职位分类</th>
<td>
<input type="hidden" name="majorRelease.majorKindId" value="${majorReleaseForm.majorRelease.majorKindId }" id="hmkn" >
<html:text property="majorRelease.majorKindName" readonly="true" styleClass="texts3"></html:text>
</td>
<th>职位名称</th>
<td>
<input type="hidden" name="majorRelease.majorId" value="${majorReleaseForm.majorRelease.majorId }" id="hmn">
<html:text property="majorRelease.majorName" readonly="true" styleClass="texts3"></html:text>
</td>
<th>招聘人数</th>
<td>
<html:text property="majorRelease.humanAmount" styleId="zprs" styleClass="texts" ></html:text>
</td>
<th>截止日期</th>
<td>
<html:text property="majorRelease.deadline" onclick="setday(this);" value="2009-01-01" styleClass="texts" ></html:text>
</td>
</tr>
<tr>
<th>登记人</th>
<td>
<html:text property="majorRelease.register" readonly="true" styleClass="texts3"></html:text>
</td>
<th>登记时间</th>
<td>
<html:text property="majorRelease.registTime" readonly="true" styleClass="texts3"></html:text>
</td>
<th>更改人</th>
<td>
<html:text property="majorRelease.changer" value="${loginuser.uname}" readonly="true" styleClass="texts3"></html:text>
</td>
<th>更改时间</th>
<td>
<input type="text" name="times" id="currentTime" readonly="readonly" class="texts3">
</td>
</tr>
<tr>
<th>职位描述</th>
<td colspan="7">
<html:textarea property="majorRelease.majorDescribe" style="width:100%;background-color: transparent;" rows="5"></html:textarea>
</td>
</tr>
<tr>
<th>招聘要求</th>
<td colspan="7">
<html:textarea property="majorRelease.engageRequired" style="width:100%;background-color: transparent;" rows="5" ></html:textarea>
</td>
</tr>
</table>
<br>
<center><html:submit value="提交" /> <input type="button" value="返回" onclick="location.href='majorRelease.do?opmr=toUpdateFind'" > </center>
</html:form>
</body>
</html>
<script type="text/javascript">
<!--
//验证
function tijiao(){
setSubName();
if(document.getElementById("firstk").value==-1){
alert("请选择机构");
return false;
}
var mount=document.getElementById("zprs").value;
if(mount==''){
alert("请输入招聘人数");
return false;
}
if(isNaN(mount)){
alert("请输入正确的人数");
return false;
}
}
//-->
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -