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="org_tree.do" method="post">
  15. <TABLE class="tableEdit" border="0" cellspacing="1" cellpadding="0" style="width:580px;">
  16. <TBODY>
  17. <TR>
  18. <!-- 这里是添加、编辑界面的标题 -->
  19. <td align="center" class="tdEditTitle">添加机构信息</TD>
  20. </TR>
  21. <TR>
  22. <td>
  23. <!-- 主输入域开始 -->
  24. <input type="hidden" name="method" value="add">
  25. <input type="hidden" name="parentId" value="${orgForm.parentId}">
  26. <table class="tableEdit" style="width:580px;" cellspacing="0" border="0" cellpadding="0">
  27. <tr>
  28. <td class="tdEditLabel" >机构名称</td>
  29. <td class="tdEditContent"><input type="text" name="name">
  30. </td>
  31. <td class="tdEditLabel" >机构描述</td>
  32. <td class="tdEditContent"><input type="text" name="description"></td>
  33. </tr>
  34. </table>
  35. <!-- 主输入域结束 -->
  36. </td>
  37. </TR>
  38. </TBODY>
  39. </TABLE>
  40. <TABLE>
  41. <TR align="center">
  42. <TD colspan="3" bgcolor="#EFF3F7">
  43. <input type="submit" name="saveButton"
  44. class="MyButton" value="保存机构信息"> 
  45. <input type="button" class="MyButton"
  46. value="关闭窗口" onclick="window.close()">
  47. </TD>
  48. </TR>
  49. </TABLE>
  50. </form>
  51. </center>
  52. </body>
  53. </html>