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

📄 getempinfo.jsp

📁 一个汽车售后服务站的典型的进销管理系统,B/S模式的
💻 JSP
字号:
<%@ page language="java" pageEncoding="gb2312"%>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
	prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
	prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic"
	prefix="logic"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles"
	prefix="tiles"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template"
	prefix="template"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested"
	prefix="nested"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
	<html:base />

	<title>中国胜利汽配-显示雇员信息</title>

	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->
	<style type="text/css">
<!--
body {
	background-color: #F7F7F7;
}
.STYLE1 {font-size: 18px}
.STYLE4 {font-size: 12px}
-->
    </style>
     <script type="text/javascript">
    function check()
    {
    	if(confirm("确认删除此条记录吗?"))
    	{
    		return true;
    	}else{
    		return false;
    	}
    }
     function test()
    {
    	if(confirm("确认修改此条记录吗?"))
    	{
    		return true;
    	}else{
    		return false;
    	}
    }
    </script>
</head>

<body>
	<table width="760" height="694" border="0" cellpadding="0"
		cellspacing="0">
		<tr>
			<td height="18" bgcolor="#F7F7F7">
				<table width="760" height="17" border="0" cellpadding="0"
					cellspacing="0">
					<tr>
						<td>
							<span class="STYLE4">当前位置:<A
								href="/CarFitManageSystem/carIndex.jsp">首页</A> &gt;雇员信息更改</span>
						</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td height="644" valign="top">
				<p class="STYLE1">
					&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;雇员信息
					<span class="STYLE4"> </span>
				</p>
				<table width="760" border="1" cellspacing="0" cellpadding="0">
					<tr>
						<th height="22">
							<div align="center" class="STYLE2 STYLE4">
								雇员编号
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								登录名
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								真实姓名
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								雇员性别
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								联系方式
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								所属部门
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								雇员职务
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								出生日期
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								雇用日期
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								雇员薪水
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								雇员Email
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								是否修改
							</div>
						</th>
						<th>
							<div align="center" class="STYLE2 STYLE4">
								是否删除
							</div>
						</th>
					</tr>
					<logic:iterate id="employeeinfo" name="empInfoList" scope="session">
						<tr>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.employeeNo} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.userName} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4">${employeeinfo.empName} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.empSex} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.empPhone} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> 
								<bean:define id="dept" name="employeeinfo" property="departmentTable" /> 
									${dept.depName}
								</span>

							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.duty} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.birthday} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.jobPass}</span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.salary} </span>
							</td>
							<td>
								<span class="STYLE2 STYLE4"> ${employeeinfo.email} </span>
							</td>
							<td>
								<html:link action="/beforeUpdateEmpInfo"
									paramName="employeeinfo" paramId="id" paramProperty="id"
									scope="session" onclick="return test()">修改</html:link>
							</td>
							<td>
								<html:link action="/deleteEmployeeInfo" paramName="employeeinfo"
									paramId="id" paramProperty="id" onclick="return check()">删除</html:link>
							</td>
						</tr>
					</logic:iterate>
				</table>
			</td>
		</tr>

		<tr>
			<td height="12">
				<p>
					<STRONG><span class="STYLE4"><A
							href="http://www.ccd.com.cn/friendship_link/index.asp">友情链接:
						</A><A href="http://webunion.ccd.com.cn/" target="_blank">中国建筑装饰网站联盟</A>
					</span> </STRONG>
				</p>
			</td>
		</tr>
	</table>
</body>
</html:html>

⌨️ 快捷键说明

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