editContractFile.jsp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html;charset=GBK">
  9. <title>ÔÆ±à¼­</title>
  10. <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  11. <link href="${pageContext.request.contextPath }/main.css" rel="stylesheet" type="text/css" />
  12. <%-- <link href="${pageContext.request.contextPath }/yw/gov/dispatch/style.css" rel="stylesheet" type="text/css" /> --%>
  13. <script src="/shares/js/jquery-1.8.2.js" type="text/javascript"></script>
  14. <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
  15. <script type="text/javascript" src="/shares/js/constant.js"></script>
  16. <script type="text/javascript" src="/shares/js/common.js"></script>
  17. <script type="text/javascript">
  18. var tab1 = null;
  19. $(function(){
  20. tab1 = $("#tab1").ligerTab();
  21. $("#draftdate").ligerDateEditor({
  22. showTime : false,
  23. labelAlign : 'left',
  24. format : "yyyy-MM-dd"
  25. });
  26. $("#printdate").ligerDateEditor({
  27. showTime : false,
  28. labelAlign : 'left',
  29. format : "yyyy-MM-dd"
  30. });
  31. var nextUserTag = "${requestScope.tmodel.pathJudgeType.value }";
  32. if(nextUserTag == "1"){
  33. $("[name='nextUser']").hide();
  34. var nextTmodelId = $("[name='nextTmodelId']").val();
  35. $("#" + nextTmodelId).show();
  36. }
  37. $("[name='nextTmodelId']").change(function(){
  38. $("[name='nextUser']").hide();
  39. var nextTmodelId = $("[name='nextTmodelId']").val();
  40. $("#" + nextTmodelId).show();
  41. });
  42. $("#officeFrame").attr("src", "${pageContext.request.contextPath}/contractCloudeditor.do?task=edit&fileId=${fileId}");
  43. });
  44. function close1() {
  45. window.parent.tab.removeSelectedTabItem();
  46. }
  47. function setValue(fileId, fileName) {
  48. $("#docid").val(fileId);
  49. }
  50. </script>
  51. <style>
  52. * {
  53. margin: 0px;
  54. padding: 0px;
  55. }
  56. </style>
  57. </head>
  58. <body style="width: 100%;height:900px;">
  59. <form action="contractEntry.do" method="post" id="form1" name="form1">
  60. <iframe name="officeFrame" id="officeFrame" src=""
  61. frameborder="0" scrolling="no" width="100%" height="100%" style="margin-top: 3px;" >
  62. </iframe>
  63. </form>
  64. </body>
  65. </html>