加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zhigongList.jsp 2.52 KB
一键复制 编辑 原始数据 按行查看 历史
温娴 提交于 2020-01-04 21:45 . zhigong 界面
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page isELIgnored="false" %>
<%
String path = request.getContextPath();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
<script type="text/javascript" src="<%=path %>/jsxx/jsxxBus.js"></script>
</head>
<body leftmargin="2" topmargin="2" background='<%=path %>/img/allbg.gif'>
<table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
<tr bgcolor="#E7E7E7">
<td height="14" colspan="8" background="<%=path %>/img/tbg.gif">&nbsp;职工工资添加&nbsp;</td>
</tr>
<tr align="center" bgcolor="#FAFAF1" height="22">
<td>职工编号</td>
<td>姓名</td>
<td>所在部门</td>
<td>性别</td>
<td>入职时间</td>
<td>添加工资</td>
</tr>
<c:forEach items="${requestScope.zhigongList}" var="zhigong">
<tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
<td bgcolor="#FFFFFF" align="center">
${zhigong.bianhao}
</td>
<td bgcolor="#FFFFFF" align="center">
${zhigong.xingming}
</td>
<td bgcolor="#FFFFFF" align="center">
${zhigong.bmmc}
</td>
<td bgcolor="#FFFFFF" align="center">
${zhigong.xingbie}
</td>
<td bgcolor="#FFFFFF" align="center">
${zhigong.ruzhi}
</td>
<td bgcolor="#FFFFFF" align="center">
<form action="<%=path %>/admin/gongzi/gongziAdd.jsp" method="post">
<input type="hidden" name="id" value="${zhigong.id }"/>
<input type="hidden" name="bianhao" value="${zhigong.bianhao }"/>
<input type="hidden" name="xingming" value="${zhigong.xingming }"/>
<input type="hidden" name="bmmc" value="${zhigong.bmmc }"/>
<input type="hidden" name="xishu" value="${zhigong.xishu }"/>
<input type="submit" value="添加工资"/>
</form>
</td>
</tr>
</c:forEach>
</table>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化