add_input.jsp
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2.     pageEncoding="GB18030"%>
  3. <%@include file="/common/common.jsp" %>
  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=GB18030">
  8. <link href="style/oa.css" rel="stylesheet" type="text/css">
  9. <script language="javascript" src="script/public.js"></script>
  10. <title>添加公文信息</title>
  11. </head>
  12. <body>
  13. <center>
  14. <form action="document.do" method="post" enctype="multipart/form-data">
  15. <TABLE class="tableEdit" border="0" cellspacing="1" cellpadding="0" style="width:580px;">
  16. <TBODY>
  17. <TR>
  18. <!-- 这里是添加、编辑界面的标题 -->
  19. <td align="center" class="tdEditTitle">
  20. 您要创建的公文
  21. </TD>
  22. </TR>
  23. <TR>
  24. <td>
  25. <!-- 主输入域开始 -->
  26. <input type="hidden" name="method" value="add">
  27. <input type="hidden" name="workflowId" value="${documentForm.workflowId}">
  28. <table class="tableEdit" style="width:580px;" cellspacing="0" border="0" cellpadding="0">
  29. <tr>
  30. <td class="tdEditLabel" >公文名称</td>
  31. <td class="tdEditContent"><input type="text" name="title">
  32. </td>
  33. <td class="tdEditLabel" >公文描述</td>
  34. <td class="tdEditContent"><input type="text" name="description"></td>
  35. </tr>
  36. <tr>
  37. <td class="tdEditLabel" >公文附件</td>
  38. <td class="tdEditContent"><input type="file" name="contentFile">
  39. </td>
  40. <td class="tdEditLabel" ></td>
  41. <td class="tdEditContent"></td>
  42. </tr>
  43. </table>
  44. ${my:form(documentForm.workflowId)}
  45. <!-- 主输入域结束 -->
  46. </td>
  47. </TR>
  48. </TBODY>
  49. </TABLE>
  50. <TABLE>
  51. <TR align="center">
  52. <TD colspan="3" bgcolor="#EFF3F7">
  53. <input type="submit" name="saveButton"
  54. class="MyButton" value="保存公文信息"> 
  55. <input type="button" class="MyButton"
  56. value="关闭窗口" onclick="window.close()">
  57. </TD>
  58. </TR>
  59. </TABLE>
  60. </form>
  61. </center>
  62. </body>
  63. </html>