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

📄 e0ea4b22ab32001d13bac57449acedd7

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<html>
  <head>
    <title>${CompanyName }${ProjectName }</title>
    <%@ include file="/commons/meta.jsp" %>
  </head>
  <body class="bodycolor" topmargin="5">


<table class="title1">
  <tr>
    <td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle"><span class="big3"> 职工信息</span><br>
    </td>
    </tr>
</table>
<br>

<div align="left">
<fieldset style="width:95%;padding-bottom:5px;">
	 <legend class="small" align=left>
      <b> 快捷操作 </b>
  </legend>
<html:form action="employee.do"  method="post" >
<html:hidden property="p" value="list" />
<table cellspacing="1" class="small" align="left" cellpadding="3">

  <tr>
    <td nowrap class="TableData">&nbsp;&nbsp;职工姓名: 
        <html:text property="employeeName"  size="15" maxlength="100" />
    </td>
    
    <td nowrap class="TableData">&nbsp;&nbsp;职工编号:
        <html:text property="employeeId"  size="15" maxlength="100" />
    </td>
     <td nowrap class="TableData">&nbsp;&nbsp;出生日期: 
        <html:text property="birthday"  size="15" maxlength="100" />
    </td>
    <td nowrap class="TableData">&nbsp;&nbsp;性别:
        	<html:select property="sex">
        	<html:option value="" >---请选择---</html:option>
	       	<html:option value="0" >男</html:option>
	        <html:option value="1" >女</html:option>
		</html:select>
    </td>
    
    </tr>
  <tr>
    <td nowrap class="TableData">&nbsp;&nbsp;移动电话:
        <html:text property="mobilephone"  size="15" maxlength="100" />
    </td>
    <td nowrap class="TableData">&nbsp;&nbsp;固定电话:
        <html:text property="telephone"  size="15" maxlength="100" />
    </td>
      <td nowrap class="TableData">&nbsp;&nbsp;所属部门:
        <html:select property="deptId">
			<html:option value="---请选择---"></html:option>
			<html:options collection="depts" property="id" labelProperty="deptName"/>
		</html:select>
    </td>
      <td nowrap class="TableData">&nbsp;&nbsp;职务:
        <html:select property="dutyId">
			<html:option value="---请选择---"></html:option>
			<html:options collection="dutys" property="id" labelProperty="dutyName"/>
		</html:select>
    </td>
    
  </tr>
   <tr>
    <td nowrap class="TableData" colspan="2">
        &nbsp;&nbsp;<html:submit styleClass="SmallButton" title="模糊查询">快速查询</html:submit>
        <input type="button" value="添加职工资料" title="职工资料导入" onClick="location.href='${ctx}/employee.do?p=edit'" class="SmallButton">
    </td>
   </tr>
</table>
 </html:form>
</fieldset>
</div>

<br>

<c:if test="${empty employees }">
<%@ include file="/utility/noData.jsp" %>
</c:if>
<c:if test="${! empty sorry }">
<table align="center">
<tr><td align="center"><font color="red" size="3">${sorry }</font></td></tr>
</c:if>
</table>
<%@ include file="/commons/messages.jsp"%>
<!-- 显示数据信息 -->
<c:if test="${! empty employees }">
<table  class="tablestyle1">
  <tr class="TableHeader">
	 <td nowrap width="5%" align="center">选择</td>
     <td nowrap width="15%" align="center">职工姓名</td>
     <td nowrap width="10%" align="center">职工编号</td>
     <td nowrap width="5%" align="center">性别</td>
     <td nowrap width="19%" align="center">籍贯</td>
     <td nowrap width="13%" align="center">部门</td>
     <td nowrap width="13%" align="center">职务</td>
     <td nowrap width="20%" align="center">操作</td>
  </tr>
<c:forEach items="${employees}" var="item">
  <tr class="TableLine1">
	<td>&nbsp;<input type="checkbox" name="email_select" value="1" onClick="check_one(self);"></td>
      <td nowrap align="center">${item.employeeName }</td>
      <td nowrap align="center">${item.employeeId }</td>
      <td nowrap align="center">
      	<c:if test="${item.sex==1}">女</c:if>
		<c:if test="${item.sex==0}">男</c:if>
      </td>
      <td nowrap align="center">${item.home }</td>
      <td nowrap align="center">${item.dept.deptName }</td>
      <td nowrap align="center">${item.duty.dutyName }</td>
      <td nowrap align="center">
        <a href="${ctx}/employee.do?p=edit&id=${item.id}">编辑</a>&nbsp;|&nbsp;
		<a href="${ctx}/employee.do?p=delete&id=${item.id}" onClick="{if(confirm('确定要删除该职工吗?')){return true;}return false;}">删除</a>&nbsp;|&nbsp;
		<a href="${ctx}/employee.do?p=info&id=${item.id}">详细信息</a>
      </td>
   </tr>
</c:forEach>    
 <tr class="TableControl">
 <td colspan="8">
 	   &nbsp;<input type="checkbox" name="allbox" id="allbox_for" onClick="check_all();">
      <label for="allbox_for">全选</label> &nbsp;
      <input type="button"  value="批量删除" class="SmallButton" onClick="delete_mail();" title="删除所选联系人"> &nbsp;
 </td>
 </tr>
   <tr>
 	<pager:pager value="pager" url="employee.do" pagerStr="pagerstruts"/>
</tr>
</table>
</c:if>
  </body>
</html>

⌨️ 快捷键说明

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