meetinfolook.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. <html:html lang="true">
  8. <head>
  9. <html:base />
  10. <title>会议纪要详细信息</title>
  11. <link href="${pageContext.request.contextPath}/Css_file/oa.css" rel="stylesheet" type="text/css" />
  12. </head>
  13. <body>
  14. <html:form action="/meetinfo">
  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="miid" name="meetinfoForm" />
  20. 号会议纪要详细信息:
  21. </TH>
  22. </TR>
  23. <TR class="tr3 f_one">
  24. <TH>
  25. 会议纪要编号:
  26. </TH>
  27. <TH>
  28. <bean:write property="miid" name="meetinfoForm" />
  29. </TH>
  30. </TR>
  31. <TR class="tr3 f_two">
  32. <TH>
  33. 会议主题:
  34. </TH>
  35. <TH>
  36. <bean:write property="miinfo" name="meetinfoForm" />
  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="mepeople" name="meetinfoForm" 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="meetinfoForm">
  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="mistarttime" name="meetinfoForm" />
  83. </TH>
  84. </TR>
  85. <TR class="tr3 f_one">
  86. <TH>
  87. 会议纪要主题:
  88. </TH>
  89. <TH>
  90. <bean:write property="minfoname" name="meetinfoForm" />
  91. </TH>
  92. </TR>
  93. <TR class="tr3 f_two">
  94. <TH>
  95. 会议纪要内容:
  96. </TH>
  97. <TH>
  98. <bean:write property="minfocontent" name="meetinfoForm" />
  99. </TH>
  100. </TR>
  101. <TR class="tr3 f_one">
  102. <TH>
  103. 会议结束时间:
  104. </TH>
  105. <TH>
  106. <bean:write property="miendtime" name="meetinfoForm" />
  107. </TH>
  108. </TR>
  109. <TR class="tr3 f_two">
  110. <TH>
  111. 会议状态:
  112. </TH>
  113. <TH>
  114. <logic:equal name="meetinfoForm" property="miisdel" value="0">未开始</logic:equal>
  115. <logic:equal name="meetinfoForm" property="miisdel" value="1">开会中</logic:equal>
  116. <logic:equal name="meetinfoForm" property="miisdel" value="2">已完成</logic:equal>
  117. </TH>
  118. </TR>
  119. <TR class="tr3 f_one">
  120. <TH>
  121. 会议附件:
  122. </TH>
  123. <TH>
  124. <logic:equal name="meetinfoForm" property="maffix" value="0">没有相关附件</logic:equal>
  125. <logic:equal name="meetinfoForm" property="maffix" value="1">
  126. <bean:write property="miaffixname" name="meetinfoForm" />
  127. </logic:equal>
  128. </TH>
  129. </TR>
  130. </TABLE>
  131. </div>
  132. <div style="text-align:center;margin-bottom:25px;">
  133. <input type="button" class="btn" value=" 返回 " onclick="history.back();" />
  134. </div>
  135. </html:form>
  136. </body>
  137. </html:html>