CahierManage.jsp
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:5k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312"%>
  2. <%@ page import="com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
  3. <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
  7. <title>会议纪要管理-- GForce OA 2.0</title>
  8. <link href="/css/txt.jsp" rel="stylesheet" type="text/css">
  9. <script language="JavaScript" src="/js/changestyle.js"></script>
  10. </head>
  11. <body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
  12. <table width="100%" height="100%" border="0" align="center" cellspacing="0">
  13.     <tr>
  14.         <td align="center" valign="top"><p>&nbsp;</p>
  15.         <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
  16.         <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
  17.           <th width="3%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
  18.           <th width="6%" nowrap><font color="#000000">会议编号</font></th>
  19.           <th width="50%" nowrap><font color="#000000">会议名称</font></th>
  20.           <th width="20%" nowrap><font color="#000000">开会时间</font></th>
  21.           <th width="8%" nowrap><font color="#000000">主持人</font></th>
  22.           <th width="8%" nowrap><font color="#000000">笔记用户</font></th>
  23.           <th width="6%" nowrap><font color="#000000">修改</font></th>
  24.           <th width="6%" nowrap><font color="#000000">删除</font></th>
  25.         </tr>
  26.         <%
  27. int intUserID = m_session.GetInt("UserID");
  28. Request m_request = new Request(request);
  29. int iPageSize = 18;
  30. int iPage = m_request.GetInt("Page");
  31. Vector vt = CahierManager.getRecordByUserID(intUserID);
  32. if(iPage<1)iPage=1;
  33. int iPageCount = StringNew.getPageCount(vt.size(),iPageSize);
  34. if(iPage>iPageCount) iPage=1;
  35. for(int i=(iPage-1)*iPageSize;i<vt.size()&&i<iPage*iPageSize;i++)
  36. {
  37.     String strID = ((Vector)vt.get(i)).get(0).toString();
  38.     if(i % 2 == 0)
  39.         out.println("<tr id="Row"+ i+ "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
  40.     else
  41.         out.println("<tr id="Row"+ i+ "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
  42.     out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
  43.     out.println("<td align="Center" valign="middle">&nbsp;" + ((Vector)vt.get(i)).get(2).toString() + "</td>");
  44.     out.println("<td align="left" valign="middle" nowrap title="" + ((Vector)vt.get(i)).get(3).toString() + ""><a href="ShowCahier.jsp?ID=" + strID + "" target="_blank">" + ((Vector)vt.get(i)).get(3).toString() + "&nbsp;</a></td>");
  45.     out.println("<td align="center" valign="middle" nowrap>&nbsp;" + StringNew.GetDateString(((Vector)vt.get(i)).get(4).toString(),"yyyy年MM月dd日 HH时mm分") + "</td>");
  46.     out.println("<td align="center" valign="middle" nowrap>&nbsp;" + ((Vector)vt.get(i)).get(6).toString() + "</td>");
  47.     out.println("<td align="center" valign="middle" nowrap>&nbsp;" + UserManager.getPersonnelNameByUserID(Integer.parseInt(((Vector)vt.get(i)).get(10).toString())) + "</td>");
  48.     out.println("<td align="center" valign="middle" nowrap><a href="EditCahier.jsp?ID=" + strID + "">修改</a></td>");
  49.     out.println("<td align="center" valign="middle" nowrap><a href="DelCahier.jsp?ID=" + strID + "" onclick="return confirm('您确实要删除该会议纪要吗?');">删除</a></td>");
  50.     out.println("</tr>");
  51. }
  52. %>
  53.         <tr>
  54.           <th align="center" valign="top" colspan="7"> <%
  55. String strCurrentPageURL = request.getRequestURI();
  56. if(iPage<2)
  57. out.print("首页&nbsp;&nbsp;上页");
  58. else
  59. out.print("<a href=""+ strCurrentPageURL+"?Page=" + 1 + "">首页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + (iPage-1) + "">上页</a>");
  60. out.print("&nbsp;&nbsp;当前是第" + iPage + "页,共" + vt.size() + "条记录" + iPageCount + "页&nbsp;&nbsp;");
  61. if(iPage>=iPageCount)
  62. out.print("下页&nbsp;&nbsp;末页");
  63. else
  64. out.print("<a href=""+ strCurrentPageURL+"?Page=" + (iPage+1) + "">下页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + iPageCount + "">末页</a>");
  65. %> </th>
  66.           <th colspan="3"> <a href="AddCahier.jsp"><font color="#0A0A0A"><strong>新增</strong></font></a></th>
  67.         </tr>
  68.       </table>
  69.      </td>
  70.     </tr>
  71. </table>
  72. </body>
  73. </html>