📄 majorrelease_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>
<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="majorRelease">
<input type="hidden" name="opmr" value="toList"/>
<table align="center" width="100%" border="0" style="font-size: 12px">
<tr>
<td>
<logic:notEmpty name="majorReleaseForm" 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>
</tr>
<c:forEach var="item" items="${majorReleaseForm.pageResult.list}">
<tr>
<td align="center">${item.firstKindName }</td>
<td align="center">${item.majorName }</td>
<td align="center">${item.humanAmount }</td>
<td align="center">${item.registTime }</td>
<td align="center">${item.deadline }</td>
<td align="center"><a href='engageResume.do?oper=toAdd'>申请该职位</a></td>
</tr>
</c:forEach>
</table>
</logic:notEmpty>
<logic:empty name="majorReleaseForm" property="pageResult.list">
<b>没有检索到您想要的信息</b>
</logic:empty>
</td>
</tr>
<tr>
<td>
<logic:notEmpty name="majorReleaseForm" property="pageResult.list">
<page:link formName="majorReleaseForm"/>
</logic:notEmpty>
</td>
</tr>
</table>
</html:form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -