123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <%--
- time:2019-05-06 10:36:04
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>议题管理明细</title>
- <%@include file="/commons/include/get.jsp"%>
- <script type="text/javascript">
- //放置脚本
- </script>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">议题管理详细信息</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group">
- <a class="link back" href="list.ht"><span></span>返回</a>
- </div>
- </div>
- </div>
- </div>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <th width="20%">议题名称:</th>
- <td>${topicManagement.FTopicName}</td>
- </tr>
- <tr>
- <th width="20%">议题标签:</th>
- <td>${topicManagement.FTopicLabel}</td>
- </tr>
- <tr>
- <th width="20%">议题分类:</th>
- <td><select id="FTopicClassification" name=FTopicClassification disabled="disabled">
- <option value="0"
- <c:if test="${topicManagement.FTopicClassification ==0}"> selected="selected"</c:if>>0</option>
- <option value="1"
- <c:if test="${topicManagement.FTopicClassification ==1}"> selected="selected"</c:if>>1</option>
- </select> </td>
- </tr>
- <tr>
- <th width="20%">议题状态:</th>
- <td><select id="FTopicState" name="FTopicState" disabled="disabled">
- <option value="0"
- <c:if test="${topicManagement.FTopicState ==0}"> selected="selected"</c:if>>新建</option>
- <option value="1"
- <c:if test="${topicManagement.FTopicState ==1}"> selected="selected"</c:if>>上报</option>
- </select> </td>
- </tr>
- <tr>
- <th width="20%">议题简介:</th>
- <td>${topicManagement.FTopicSynopsis}</td>
- </tr>
- <tr>
- <th width="20%">上报人 :</th>
- <td>${topicManagement.FReportperson}</td>
- </tr>
- <tr>
- <th width="20%">上报时间:</th>
- <td>
- <fmt:formatDate value="${topicManagement.FReportingTime}" pattern="yyyy-MM-dd"/>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|