| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>ÔÆ±à¼</title>
- <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="${pageContext.request.contextPath }/main.css" rel="stylesheet" type="text/css" />
- <%-- <link href="${pageContext.request.contextPath }/yw/gov/dispatch/style.css" rel="stylesheet" type="text/css" /> --%>
- <script src="/shares/js/jquery-1.8.2.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript">
- var tab1 = null;
- $(function(){
- tab1 = $("#tab1").ligerTab();
-
- $("#draftdate").ligerDateEditor({
- showTime : false,
- labelAlign : 'left',
- format : "yyyy-MM-dd"
- });
-
- $("#printdate").ligerDateEditor({
- showTime : false,
- labelAlign : 'left',
- format : "yyyy-MM-dd"
- });
- var nextUserTag = "${requestScope.tmodel.pathJudgeType.value }";
- if(nextUserTag == "1"){
- $("[name='nextUser']").hide();
- var nextTmodelId = $("[name='nextTmodelId']").val();
- $("#" + nextTmodelId).show();
- }
-
-
- $("[name='nextTmodelId']").change(function(){
- $("[name='nextUser']").hide();
- var nextTmodelId = $("[name='nextTmodelId']").val();
- $("#" + nextTmodelId).show();
- });
- $("#officeFrame").attr("src", "${pageContext.request.contextPath}/contractCloudeditor.do?task=edit&fileId=${fileId}");
-
- });
-
- function close1() {
- window.parent.tab.removeSelectedTabItem();
- }
-
- function setValue(fileId, fileName) {
- $("#docid").val(fileId);
- }
-
-
- </script>
- <style>
- * {
- margin: 0px;
- padding: 0px;
- }
- </style>
- </head>
- <body style="width: 100%;height:900px;">
- <form action="contractEntry.do" method="post" id="form1" name="form1">
-
- <iframe name="officeFrame" id="officeFrame" src=""
- frameborder="0" scrolling="no" width="100%" height="100%" style="margin-top: 3px;" >
- </iframe>
- </form>
- </body>
- </html>
|