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

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312"%>
  2. <%@ page import="com.gforce.currency.*" %>
  3. <%@ page import="com.gforce.gfoa.*,java.util.*" %>
  4. <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
  5. <%
  6. int iUserID = m_session.GetInt("UserID");
  7. %>
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
  11. <title>顶部页面u2014u2014GForce OA 2.0</title>
  12. <link href="css/txt.jsp" rel="stylesheet" type="text/css">
  13. <script language="JavaScript" src="/js/changestyle.js"></script>
  14. <style type="text/css">
  15. <!--
  16. TD {FONT-SIZE: 12px}
  17. .size12 {FONT-SIZE: 12px; LINE-HEIGHT: 17px}
  18. .size12h {FONT-SIZE: 12px; LINE-HEIGHT: 20px}
  19. .size14 {FONT-SIZE: 14px}
  20. .size14h {FONT-SIZE: 14px; LINE-HEIGHT: 18px}
  21. .size7 {
  22.   background-image: url(images/top1.gif);
  23.   background-repeat: no-repeat;
  24.   background-position: right;
  25. }
  26. A:link {COLOR: #000000; TEXT-DECORATION: none}
  27. A:unknown {TEXT-DECORATION:}
  28. A:visited {COLOR: #000000; TEXT-DECORATION: none}
  29. A:active {TEXT-DECORATION: none}
  30. A:hover {COLOR: #ca0216; TEXT-DECORATION: underline}
  31. .tu {
  32.   background-image: url(images/top2.jpg);
  33.   background-repeat: no-repeat;
  34.   background-position: left;
  35. }
  36. body {
  37.   margin-left: 0px;
  38.   margin-top: 0px;
  39.   margin-right: 0px;
  40.   margin-bottom: 0px;
  41.   background-color: #034E92;
  42. }
  43. -->
  44. </style>
  45. </head>
  46. <body leftmargin="0" topmargin="0"  bgcolor="<%=m_session.GetString("TopBackColor")%>" onLoad="javascript: startclock();">
  47.   <table width="100%" border="0" cellpadding="0" cellspacing="0">
  48.     <tr background="images/zjm01.gif">
  49.       <td background="images/zjm01.gif"><img src="images/logo.gif" width="366" height="43"></td>
  50.       <td width="100" background="images/zjm01.gif"><table border="0" cellpadding="0" cellspacing="0">
  51.       <tr>
  52.         <td valign="top"><img src="images/zjm10.gif" name=a1 width="32" height="31"></td>
  53.         <td><table border="0" cellpadding="0" cellspacing="0">
  54.             <tr>
  55.               <td height="13"><a href="/LogOut.jsp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('a1','','images/zjm10a.gif',1)"><img src="images/zjm11.gif" width="37" height="18" border="0"></a></td>
  56.             </tr>
  57.         </table></td>
  58.       </tr>
  59.     </table></td>
  60.   </tr>
  61. </table>
  62.   <table width="100%" border="0" cellpadding="0" cellspacing="0">
  63.     <tr>
  64.       <td bgcolor="#373737"><img src="images/point.gif" width="1" height="1"></td>
  65.     </tr>
  66.     <tr>
  67.       <td bgcolor="#BABABA"><img src="images/point.gif" width="1" height="3"></td>
  68.     </tr>
  69.   </table>
  70. <table width="100%" border="0" align="center" cellspacing="0">
  71.     <tr align="center" valign="top" bgcolor="<%=m_session.GetString("TopBackColor")%>">
  72.         <td colspan="2" align="center" valign="middle" height="25">
  73.           <table width="95%" border="0" cellpadding="0" cellspacing="0">
  74.                 <tr valign="top">
  75.                     <td width="13%" nowrap="nowrap">用户姓名:<%=UserManager.getPersonnelNameByUserID(iUserID)%></font>&nbsp;</td>
  76.                     <td width="15%" nowrap="nowrap">部门:<%=UserManager.getDepartmentNameByUserID(iUserID)%></font>&nbsp;</td>
  77.                     <td width="20%" nowrap="nowrap">职务:<%=UserManager.getPlaceNameByUserID(iUserID)%></font>&nbsp;</td>
  78.                     <td width="19%" nowrap="nowrap">角色:<%=UserManager.getRoleNameByUserID(iUserID)%></font>&nbsp;</td>
  79.                     <td width="33%" nowrap="nowrap">当前时间:<font id="clock"><%=StringNew.GetDateString(new Date(),"yyyy年MM月dd日 HH:mm:ss")%></font></td>
  80.                 </tr>
  81.             </table></td>
  82.     </tr>
  83. </table>
  84. <script language="JavaScript">
  85. var timerID = null;
  86. var timerRunning = false;
  87. var timeaddsecond = 0;
  88. var localnow = new Date();
  89. var servernow = new Date(<%=StringNew.GetDateString(new Date(),"yyyy,MM-1,dd,HH,mm,ss,SSS")%>);
  90. var timediff = servernow.valueOf()-localnow.valueOf();
  91. function MakeArray(size) {
  92.     this.length = size;
  93.     for(var i = 1; i <= size; i++)
  94.       {
  95.         this[i] = "";
  96.       }
  97.   return this;
  98. }
  99. function stopclock (){
  100.     if(timerRunning)
  101.     clearTimeout(timerID);
  102.     timerRunning = false
  103. }
  104. function showtime (){
  105.   var now = new Date();
  106.   now = new Date(now.valueOf() + timediff);
  107.   var year = now.getYear();
  108.   var month = now.getMonth() + 1;
  109.   var date = now.getDate();
  110.   var hours = now.getHours();
  111.   var minutes = now.getMinutes();
  112.   var seconds = now.getSeconds();
  113.   var day = now.getDay();
  114.   Day = new MakeArray(7);
  115.   Day[0]="星期天";
  116.   Day[1]="星期一";
  117.   Day[2]="星期二";
  118.   Day[3]="星期三";
  119.   Day[4]="星期四";
  120.   Day[5]="星期五";
  121.   Day[6]="星期六";
  122.   var timeValue = "";
  123.   timeValue += year + "年";
  124.   timeValue += ((month < 10) ? "0" : "") + month + "月";
  125.   timeValue += date + "日  ";
  126.   timeValue += (Day[day]) + "  ";
  127.   //timeValue += ((hours <= 12) ? hours : hours - 12);
  128.   timeValue += hours;
  129.   timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
  130.   timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
  131.   document.all.clock.innerText = timeValue;
  132.   timerID = setTimeout("showtime()",1000);
  133.   timerRunning = true
  134. }
  135. function startclock () {
  136.   stopclock();
  137.   showtime()
  138. }
  139. </script>
  140. </body>
  141. </html>