⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 standards_find.jsp

📁 人力资源管理系统
💻 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>
  </head>
  
  <body bgcolor="#DADEDD" style="background-image: url('images/accphr/main.jpg');background-attachment :fixed ;">
    <center>薪酬标准查询</center>
    <br>
    <html:form action="standards" styleId="form1">
    <input type="hidden" name="ops" value="toList" >
     <table align="center" width="100%" border="0" style="font-size: 12px">
     	<tr>
     		<td>
     			薪酬标准单名称:<html:text name="standardsForm" property="standards.standardName" />
     			是否复核:<html:select name="standardsForm" property="standards.checkStatus" >
     						<html:option value="3">所有</html:option>
     						<html:option value="0">未复核</html:option>
     						<html:option value="1">已通过</html:option>
     						<html:option value="2">未通过</html:option>
     					</html:select>
     			<html:submit value="查询" />
     		</td>
     	</tr>
    	<tr>
    		<td>
	    	  <logic:notEmpty name="standardsForm" 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>
						<th>更改状态</th>
						<th>变更人 </th>
						<th>变更时间</th>
						<th>备注</th>
						
					</tr>
					<c:forEach var="item" items="${standardsForm.pageResult.list}">
					<tr>
						<td>${item.standardId }</td>
						<td>${item.standardName }</td>
						<td>${item.designer }</td>
						<td>${item.register }</td>
						<td>${item.registTime }</td>
						<td>${item.salarySum }</td>
						<td>
							<c:if test="${item.checkStatus==0 }">未复核</c:if>
							<c:if test="${item.checkStatus==1 }">已通过</c:if>
							<c:if test="${item.checkStatus==2 }">未通过</c:if>
						</td>
						<td>${item.checker==null?'无':item.checker}</td>
						<td>${item.checkTime==null?'无':item.checkTime }</td>
						<td>${item.changeStatus==1?'已更改':'未更改' }</td>
						<td>${item.changer==null?'未更改':item.changer }</td>
						<td>${item.changeTime==null?'未更改':item.changeTime }</td>
						<td>${item.remark==""?'无':item.remark }</td>
						
					</tr>
					</c:forEach>
				</table>
			  </logic:notEmpty>
	    	   <logic:empty name="standardsForm" property="pageResult.list">
	    	     <b>没有检索到您想要的信息</b>
	    	   </logic:empty>	
    		</td>
    	</tr>
    	<tr>
    		<td>
    		 <logic:notEmpty name="standardsForm" property="pageResult.list">
    			<page:link formName="standardsForm"/>
    		 </logic:notEmpty>
    		</td>
    	</tr>
	 </table>
    </html:form>
  </body>
</html>


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -