📄 humanfile_rollback.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">
.texts{
width:200px;
}
</style>
</head>
<body bgcolor="#DADEDD" style="background-image: url('images/accphr/main.jpg');background-attachment :fixed ;">
<center>人力资源恢复删除页面</center>
<br>
<html:form action="humanFile" styleId="form1">
<input type="hidden" name="ophf" value="toBackDel" >
<table align="center" width="100%" border="0" style="font-size: 12px">
<tr>
<td>
<logic:notEmpty name="humanFileForm" property="pageResult.list">
<table border="1" cellspacing="0" align="center" width="100%" bordercolor="black" style="font-size: 12px">
<tr>
<th>档案编号</th>
<th>姓名</th>
<th>性别</th>
<th>一级机构</th>
<th>二级机构</th>
<th>三级机构</th>
<th>职位分类</th>
<th>职位名称</th>
<th>操作</th>
</tr>
<c:forEach var="item" items="${humanFileForm.pageResult.list}">
<tr>
<td>${item.hufId }</td>
<td>${item.humanName }</td>
<td>${item.humanSex }</td>
<td>${item.firstKindName }</td>
<td>${item.secondKindName }</td>
<td>${item.thirdKindName }</td>
<td>${item.humanMajorKindName }</td>
<td>${item.hunmaMajorName}</td>
<td><a href='javascript:toWork(${item.hufId });'>恢复</a></td>
</tr>
</c:forEach>
</table>
</logic:notEmpty>
<logic:empty name="humanFileForm" property="pageResult.list">
<b>没有要复核的信息</b>
</logic:empty>
</td>
</tr>
<tr>
<td>
<logic:notEmpty name="humanFileForm" property="pageResult.list">
<page:link formName="humanFileForm"/>
</logic:notEmpty>
</td>
</tr>
</table>
</html:form>
</body>
</html>
<script type="text/javascript">
<!--
function toWork(hid){
if(window.confirm('确认恢复该信息?')){
location.href='humanFile.do?ophf=doBackDel&hid='+hid;
}
}
//-->
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -