uploadInfoPath.jsp 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html;charset=GBK">
  8. <title>流程模版</title>
  9. <link href="${ pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
  10. <script type="text/javascript" src="/shares/js/jquery-1.3.2.min.js"></script>
  11. <script
  12. src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js"
  13. type="text/javascript"></script>
  14. <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  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" src="/shares/js/yw/bpm/oa.js"></script>
  18. <script type="text/javascript" src="/shares/js/file.js"></script>
  19. <script type="text/javascript" src="/shares/js/yw/bpm/promptDefine.js"></script>
  20. <script type="text/javascript">
  21. function checkForm(){
  22. }
  23. </script>
  24. </head>
  25. <body>
  26. <form action="FormAction.do" method="post" onsubmit="return checkForm();">
  27. <div id="title" class="form-button">
  28. <input type="submit" class="l-button" value="保存" />
  29. </div>
  30. <div class="container-layout">
  31. <div class="forum-container">
  32. <center>
  33. <table class="l-table-edit line" >
  34. <tr>
  35. <th colspan="2">提交InfoPath文档</th>
  36. </tr>
  37. <tr>
  38. <td class="l-table-edit-text" rowspan="2">
  39. InfoPath文档:
  40. </td>
  41. <td class="l-table-edit-td">
  42. <jsp:include page="/include/file.jsp">
  43. <jsp:param name="fieldName" value="fileId"/>
  44. <jsp:param name="folder" value="form"/>
  45. <jsp:param name="size" value="1"/>
  46. </jsp:include>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td class="l-table-edit-td">
  51. <c:if test="${requestScope.msg != null }">
  52. <font color="red">${requestScope.msg }</font>
  53. </c:if>
  54. </td>
  55. </tr>
  56. <tr>
  57. <td style="text-align: center;" colspan="2">
  58. <c:if test="${requestScope.formId != ''}">
  59. <input type="hidden" id="formId" name="formId" value="${requestScope.formId}"/>
  60. <input type="hidden" id="formVid" name="formVid" value="${requestScope.formVid}"/>
  61. </c:if>
  62. <input type="hidden" id="task" name="task" value="upload"/>
  63. </td>
  64. </tr>
  65. </table>
  66. </center>
  67. </div>
  68. </div>
  69. </form>
  70. <%@ include file="/include/message.jsp"%>
  71. </body>
  72. </html>