📄 standards_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" %>
<html>
<head>
<base href="http://localhost:8080/accp_hr/">
<title>薪酬标准添加页面</title>
<script type="text/javascript" src="js/DateTime2.js"></script>
<script src="js/formcheck/jquery_last.js" type="text/javascript"></script>
<link type="text/css" rel="stylesheet" href="css/validator2.css"></link>
<script src="js/formcheck/formValidator.js" type="text/javascript" ></script>
<script src="js/formcheck/formValidatorRegex.js" type="text/javascript"></script>
<script language="javascript" src="js/formcheck/DateTimeMask.js" type="text/javascript"></script>
<style type="text/css">
.texts{
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="standards" styleId="form1">
<input type="hidden" name="ops" value="doCheck" >
<input type="hidden" name="standards.ssdId" value="${standardsForm.standards.ssdId}" >
<table align="center" border="0" width="100%">
<tr>
<td><input type="button" value="返回" onclick="location.href='standards.do?ops=toList'" ></td>
</tr>
<tr>
<td>
<table border="1" cellspacing="0" align="center" width="90%" bordercolor="black" style="font-size: 12px">
<tr>
<th width="20%">薪酬标准单编号 </th>
<td width="30%"><html:text property="standards.standardId" readonly="true" styleClass="texts" /> </td>
<td rowspan="7">
<table border="1" width="100%" height="100%" cellspacing="0" align="center" bordercolor="black" style="font-size: 12px">
<logic:iterate id="item" name="sublist" indexId="i" >
<tr>
<td>${item.itemId }</td>
<th>${item.itemName }</th>
<td><bean:write name="item" property="salary" format="#,###.00"/> </td>
</tr>
</logic:iterate>
</table>
</td>
</tr>
<tr>
<th>薪酬标准单名称</th>
<td><html:text property="standards.standardName" readonly="true" styleClass="texts"/> </td>
</tr>
<tr>
<th>制定者名字 </th>
<td><html:text property="standards.designer" styleClass="texts" readonly="true" /> </td>
</tr>
<tr>
<th>登记人</th>
<td><html:text property="standards.register" styleClass="texts" readonly="true" /> </td>
</tr>
<tr>
<th>登记时间</th>
<td><html:text property="standards.registTime" styleClass="texts" readonly="true" /></td>
</tr>
<tr>
<th>薪酬总额</th>
<td><html:text property="standards.salarySum" styleClass="texts" readonly="true" /> </td>
</tr>
<tr>
<th>备注</th>
<td><html:textarea property="standards.remark" rows="3" readonly="true" /></td>
</tr>
<tr>
<td colspan="4" align="center">复核信息</td>
</tr>
<tr>
<th>复核人</th>
<td colspan="3">
<html:text property="standards.checker" readonly="true" value="${loginuser.uname}" styleClass="texts"></html:text>
</td>
</tr>
<tr>
<th>复核时间</th>
<td colspan="3"><input type="text" name="times" id="currentTime" readonly="readonly" class="texts" ></td>
</tr>
<tr>
<th>是否经过复核</th>
<td colspan="3">
<input type="radio" name="standards.checkStatus" value="1">通过
<input type="radio" name="standards.checkStatus" value="2" checked="checked">未通过
</td>
</tr>
<tr>
<th>复核意见</th>
<td colspan="3"><html:textarea property="standards.checkComment" rows="3" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center"><html:submit value="提交" /> <html:reset value="重置" /> </td>
</tr>
</table>
</html:form>
</body>
</html>
<script type="text/javascript">
$(document).ready(function(){
$.formValidator.initConfig({formid:"form1",onerror:function(msg){alert(msg)}});
//验证登记人不能为空
$("#name3").formValidator({onshow:"请输入复核人",onfocus:"复核人不能为空",oncorrect:"通过"}).
inputValidator({min:1,empty:{leftempty:false,rightempty:false,
emptyerror:"名字两边不能有空符号"},onerror:"名字不能为空,请输入"});
});
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -