topicManagementGet.jsp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <%--
  2. time:2019-05-06 10:36:04
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>议题管理明细</title>
  9. <%@include file="/commons/include/get.jsp"%>
  10. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">议题管理详细信息</span>
  19. </div>
  20. <div class="panel-toolbar">
  21. <div class="toolBar">
  22. <div class="group">
  23. <a class="link back" href="list.ht"><span></span>返回</a>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  29. <tr>
  30. <th width="20%">议题名称:</th>
  31. <td>${topicManagement.FTopicName}</td>
  32. </tr>
  33. <tr>
  34. <th width="20%">议题标签:</th>
  35. <td>${topicManagement.FTopicLabel}</td>
  36. </tr>
  37. <tr>
  38. <th width="20%">议题分类:</th>
  39. <td><select id="FTopicClassification" name=FTopicClassification disabled="disabled">
  40. <option value="0"
  41. <c:if test="${topicManagement.FTopicClassification ==0}"> selected="selected"</c:if>>0</option>
  42. <option value="1"
  43. <c:if test="${topicManagement.FTopicClassification ==1}"> selected="selected"</c:if>>1</option>
  44. </select> </td>
  45. </tr>
  46. <tr>
  47. <th width="20%">议题状态:</th>
  48. <td><select id="FTopicState" name="FTopicState" disabled="disabled">
  49. <option value="0"
  50. <c:if test="${topicManagement.FTopicState ==0}"> selected="selected"</c:if>>新建</option>
  51. <option value="1"
  52. <c:if test="${topicManagement.FTopicState ==1}"> selected="selected"</c:if>>上报</option>
  53. </select> </td>
  54. </tr>
  55. <tr>
  56. <th width="20%">议题简介:</th>
  57. <td>${topicManagement.FTopicSynopsis}</td>
  58. </tr>
  59. <tr>
  60. <th width="20%">上报人 :</th>
  61. <td>${topicManagement.FReportperson}</td>
  62. </tr>
  63. <tr>
  64. <th width="20%">上报时间:</th>
  65. <td>
  66. <fmt:formatDate value="${topicManagement.FReportingTime}" pattern="yyyy-MM-dd"/>
  67. </td>
  68. </tr>
  69. </table>
  70. </div>
  71. </div>
  72. </body>
  73. </html>