archive_user_list.jsp
资源名称:JSP-OA.rar [点击查看]
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:5k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ page contentType="text/html; charset=utf-8"%>
- <%@ page import = "java.util.*"%>
- <%@ page import = "cn.js.fan.db.*"%>
- <%@ page import = "cn.js.fan.web.*"%>
- <%@ page import = "cn.js.fan.util.*"%>
- <%@ page import = "com.redmoon.oa.archive.*"%>
- <%@ page import = "com.redmoon.oa.person.*"%>
- <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>人事档案管理</title>
- <link href="../common.css" rel="stylesheet" type="text/css">
- <%@ include file="../inc/nocache.jsp"%>
- <style type="text/css">
- <!--
- .STYLE2 {color: #0033FF}
- .STYLE3 {color: #FF0000}
- -->
- </style>
- </head>
- <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
- <br>
- <table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="main">
- <tr>
- <td width="840" height="23" valign="middle" class="right-title"><span> 用户信息管理</span></td>
- </tr>
- <tr>
- <td valign="top" background="images/tab-b-back.gif">
- <%
- String op = ParamUtil.get(request, "op");
- String sql = "",sex = "",userRealName = "";
- if(op.equals("search")){
- sql = ArchiveSQLBuilder.getSearchUserInfo(request);
- }else{
- sql = ArchiveSQLBuilder.getUserInfo();
- }
- String querystr = "";
- if(op.equals("search")){
- querystr += "op=" + op + "realName=" + StrUtil.UrlEncode(ParamUtil.get(request, "realName")) + "&sex=" + StrUtil.UrlEncode(ParamUtil.get(request, "sex")) + "&fromBirthday=" + ParamUtil.get(request, "fromBirthday")
- + "&toBirthday=" + ParamUtil.get(request, "toBirthday") + "&fromJoinDepartmentDate=" + StrUtil.UrlEncode(ParamUtil.get(request, "fromJoinDepartmentDate")) + "&inActiveService=" + StrUtil.UrlEncode(ParamUtil.get(request, "inActiveService")) + "&healthState=" + StrUtil.UrlEncode(ParamUtil.get(request, "healthState"))
- + "&mostGrade=" + StrUtil.UrlEncode(ParamUtil.get(request, "mostGrade")) + "&culture=" + StrUtil.UrlEncode(ParamUtil.get(request, "culture"));
- }
- int pagesize = 10;
- Paginator paginator = new Paginator(request);
- int curpage = paginator.getCurPage();
- UserInfoDb uid = new UserInfoDb();
- ListResult lr = uid.listResult(sql, curpage, pagesize);
- int total = lr.getTotal();
- Vector v = lr.getResult();
- Iterator ir = null;
- if (v!=null)
- ir = v.iterator();
- paginator.init(total, pagesize);
- // 设置当前页数和总页数
- int totalpages = paginator.getTotalPages();
- if (totalpages==0)
- {
- curpage = 1;
- totalpages = 1;
- }
- %>
- <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td width="47"> </td>
- <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
- </tr>
- </table>
- <form name="form1" action="archive_user_add.jsp" method="post">
- <table width="97%" border="0" align="center" cellpadding="2" cellspacing="0" >
- <tr align="center" bgcolor="#C4DAFF">
- <td width="19%" height="24" >姓名</td>
- <td width="15%" bgcolor="#C4DAFF" >性别</td>
- <td width="16%" bgcolor="#C4DAFF" >出生日期</td>
- <td width="14%" >参加工作时间</td>
- <td width="12%" >文化程度</td>
- <td width="24%" >操作</td>
- </tr>
- </table>
- <%
- int i = 0;
- while (ir!=null && ir.hasNext()) {
- uid = (UserInfoDb)ir.next();
- %>
- <table width="97%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#B6CFC5" bgcolor="#FFFFFF">
- <tr align="center" >
- <td width="19%" height="22"><%=uid.getUserRealName()%></td>
- <td width="15%"><%=uid.getSex()%></td>
- <td width="16%"><%=DateUtil.format(uid.getBirthday(),"yyyy-MM-dd")%></td>
- <td width="14%"><%=DateUtil.format(uid.getJoinWorkDate(),"yyyy-MM-dd")%></td>
- <td width="12%"><%=uid.getCulture()%></td>
- <td width="12%"><a href="archive_user_modify.jsp?userName=<%=uid.getUserName()%>">编辑</a></td>
- <td width="12%"><a href="archive_user_do.jsp?userName=<%=uid.getUserName()%>&op=del">删除</a></td>
- </tr>
- </table>
- <%}%>
- </form>
- <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
- <tr>
- <td width="1%" height="23"> </td>
- <td height="23" valign="baseline">
- <div align="right">
- <%
- out.print(paginator.getCurPageBlock("?"+querystr));
- %>
- </div></td>
- </tr>
- </table> </td>
- </tr>
- </table>
- </body>
- </html>