meetlook.jsp
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page language="java" pageEncoding="GBK"%>
  2. <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
  3. <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
  4. <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
  5. <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=gbk" />
  9. <title>会议查看信息</title>
  10. <script src="${pageContext.request.contextPath}/Js_file/Calendar.js"></script>
  11. <link href="${pageContext.request.contextPath}/Css_file/oa.css" rel="stylesheet" type="text/css" />
  12. </head>
  13. <body>
  14. <html:form action="/meet">
  15. <div class="t">
  16. <table width=100% border=1 class="tr3 f_one">
  17. <TR class="h">
  18. <TH colspan="2">
  19. <bean:write property="mid" name="meetForm" />
  20. 号会议详细信息:
  21. </TH>
  22. </TR>
  23. <TR class="tr3 f_one">
  24. <TH>
  25. 会议编号:
  26. </TH>
  27. <TH>
  28. <bean:write property="mid" name="meetForm" />
  29. </TH>
  30. </TR>
  31. <TR class="tr3 f_two">
  32. <TH>
  33. 会议主题:
  34. </TH>
  35. <TH>
  36. <bean:write property="mtitle" name="meetForm" />
  37. </TH>
  38. </TR>
  39. <TR class="tr3 f_one">
  40. <TH>
  41. 会议室:
  42. </TH>
  43. <TH>
  44. <html:select property="rmid" style="width:120px" disabled="true">
  45. <html:optionsCollection name="roomlist" label="rname" value="rmid" />
  46. </html:select>
  47. </TH>
  48. </TR>
  49. <TR class="tr3 f_two">
  50. <TH>
  51. 会议主持人:
  52. </TH>
  53. <TH>
  54. <html:select property="mpeople" name="meetForm" disabled="true">
  55. <logic:present name="listuser1" scope="request">
  56. <logic:iterate id="plan" name="listuser1" scope="request">
  57. <html:option value="${plan.uno}">${plan.uname}</html:option>
  58. </logic:iterate>
  59. </logic:present>
  60. </html:select>
  61. </TH>
  62. </TR>
  63. <TR class="tr3 f_one">
  64. <TH>
  65. 会议参与人:
  66. </TH>
  67. <TH>
  68. <html:select property="addmeet" multiple="true" style="width: 120px;height: 100px" name="meetForm">
  69. <logic:present name="addmeet" scope="request">
  70. <logic:iterate id="plan" name="addmeet" scope="request">
  71. <html:option value="${plan.uno}">${plan.uname}</html:option>
  72. </logic:iterate>
  73. </logic:present>
  74. </html:select>
  75. </TH>
  76. </TR>
  77. <TR class="tr3 f_two">
  78. <TH>
  79. 会议开始时间:
  80. </TH>
  81. <TH>
  82. <bean:write property="mstarttime" name="meetForm" />
  83. </TH>
  84. </TR>
  85. <TR class="tr3 f_one">
  86. <TH>
  87. 会议结束时间:
  88. </TH>
  89. <TH>
  90. <bean:write property="mendtime" name="meetForm" />
  91. </TH>
  92. </TR>
  93. <TR class="tr3 f_two">
  94. <TH>
  95. 会议状态:
  96. </TH>
  97. <TH>
  98. <logic:equal name="meetForm" property="mstatus" value="0">未开始</logic:equal>
  99. <logic:equal name="meetForm" property="mstatus" value="1">开会中</logic:equal>
  100. <logic:equal name="meetForm" property="mstatus" value="2">已完成</logic:equal>
  101. <logic:equal name="meetForm" property="mstatus" value="3">已取消</logic:equal>
  102. </TH>
  103. </TR>
  104. <TR class="tr3 f_one">
  105. <TH>
  106. 会议附件:
  107. </TH>
  108. <TH>
  109. <logic:equal name="meetForm" property="miaffix" value="0">没有相关附件</logic:equal>
  110. <logic:equal name="meetForm" property="miaffix" value="1">
  111. <bean:write property="maffixname" name="meetForm" />
  112. </logic:equal>
  113. </TH>
  114. </TR>
  115. </TABLE>
  116. </div>
  117. <div style="text-align:center;margin-bottom:25px;">
  118. <input type="button" class="btn" value=" 返回 " onclick="history.back();" />
  119. </div>
  120. </html:form>
  121. </body>