1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <%@page import="com.hcks.cmfds.commons.util.DateUtils"%>
- <%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator"%>
- <%
- String contextPath = request.getContextPath();
- long currentTime = DateUtils.truncate(DateUtils.today()).getTime();
- %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <meta http-equiv="pragram" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache, must-revalidate">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
- <title><decorator:title default="jeeweb"/></title>
- <base target="_self"/>
-
- <script type="text/javascript">
- var __CURRENT_DATE = <%=currentTime%>;
- var __TODAY = new Date(__CURRENT_DATE);
- var __CONTEXT_PATH = "<%=contextPath %>";
- var __BLANK_IMAGE = __CONTEXT_PATH + "/resource/images/default/s.gif";
- function tab(id, title, url, refresh) {
- if (!refresh) {
- parent.ws.go(id, title, __CONTEXT_PATH + url);
- } else {
- parent.ws.refresh(id, title, __CONTEXT_PATH + url);
- }
- }
- </script>
-
-
-
- <script src="<%=contextPath %>/resource/js/jquery-1.8.3.js" type="text/javascript"></script>
- <style>
- body{
- margin-left: 0px;
- margin-top: 0px;
- margin-right: 0px;
- margin-bottom: 0px;
- }
- .item_Name {
- font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: bolder;
- color: #333;
- }
- </style>
-
- <decorator:head/>
- </head>
- <body>
- <decorator:body/>
- </body>
- <script type="text/javascript">
- $(document).ready(fixIE6HScrollbarBug);
-
- function fixIE6HScrollbarBug(){
- //fix the ie6 iframe horizontal scrollbars bug
- if ($.browser.msie && $.browser.version < 7) {
- document.body.style.width = document.documentElement.clientWidth - 2 + "px";
- }
- }
- </script>
- </html>
|