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

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="meetingRoom.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="save">
  25. <input type="hidden" name="applyId" value="${meetingRoomForm.applyId }">
  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="sn" value="${meetingRoomForm.sn }">
  30. </td>
  31. <td class="tdEditLabel" >申请原因</td>
  32. <td class="tdEditContent"><input type="text" name="applyReason" value="${meetingRoomForm.applyReason }"></td>
  33. </tr>
  34. <tr>
  35. <td class="tdEditLabel" >起始时间</td>
  36. <td class="tdEditContent">
  37. <input type="text" name="beginDate" value="<fmt:formatDate value="${meetingRoomForm.beginDate }" pattern="yyyy-M-d" />">
  38. <input type="text" style="width:20px" name="beginTime" value="${meetingRoomForm.beginTime }">
  39. </td>
  40. <td class="tdEditLabel" >结束时间</td>
  41. <td class="tdEditContent">
  42. <input type="text" name="endDate" value="<fmt:formatDate value="${meetingRoomForm.endDate }" pattern="yyyy-M-d" />">
  43. <input type="text" style="width:20px" name="endTime" value="${meetingRoomForm.endTime }">
  44. </td>
  45. </tr>
  46. <tr>
  47. <td class="tdEditLabel" >申请状态</td>
  48. <td class="tdEditContent">
  49. <select name="status">
  50. <option value="A" <c:if test="${meetingRoomForm.status eq 'A' }">selected</c:if>>申请</option>
  51. <option value="O" <c:if test="${meetingRoomForm.status eq 'O' }">selected</c:if>>占用</option>
  52. </select>
  53. </td>
  54. <td class="tdEditLabel" ></td>
  55. <td class="tdEditContent">
  56. </td>
  57. </tr>
  58. </table>
  59. <!-- 主输入域结束 -->
  60. </td>
  61. </TR>
  62. </TBODY>
  63. </TABLE>
  64. <TABLE>
  65. <TR align="center">
  66. <TD colspan="3" bgcolor="#EFF3F7">
  67. <input type="submit" name="saveButton"
  68. class="MyButton" value="保存"> 
  69. <input type="button" class="MyButton"
  70. value="关闭窗口" onclick="window.close()">
  71. </TD>
  72. </TR>
  73. </TABLE>
  74. </form>
  75. </center>
  76. </body>
  77. </html>