messageReplyGet.jsp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <%--
  2. time:2012-01-14 15:15:43
  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/getById.jsp" %>
  10. </head>
  11. <body>
  12. <div class="panel">
  13. <div class="panel-top">
  14. <div class="tbar-title">
  15. <span class="tbar-label">消息回复详细信息</span>
  16. </div>
  17. <div class="panel-toolbar">
  18. <div class="toolBar">
  19. <div class="group"><a class="link back" href="list.ht"><span></span>返回</a></div>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="panel-detail">
  24. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  25. <tr>
  26. <th width="20%">标题:</th>
  27. <td>${messageReply.messageId}</td>
  28. </tr>
  29. <tr>
  30. <th width="20%">内容:</th>
  31. <td>${messageReply.content}</td>
  32. </tr>
  33. </table>
  34. </div>
  35. <div class="panel-body">
  36. <div class="panel-data">
  37. <table id="dicTable" class="table-grid table-list" id="0" cellpadding="1" cellspacing="1">
  38. <thead>
  39. <th style="width:18%">回复人</th>
  40. <th>回复内容</th>
  41. <th style="width:18%">回复时间</th>
  42. </thead>
  43. <tbody>
  44. <c:forEach items="${replyList}" var="replyItem">
  45. <tr class="${status.index%2==0?'odd':'even'}">
  46. <td>${replyItem.reply }</td>
  47. <td>${replyItem.content }</td>
  48. <td>${replyItem.replyTime }</td>
  49. </tr>
  50. </c:forEach>
  51. </tbody>
  52. </table>
  53. </div>
  54. </div>
  55. </div>
  56. </body>
  57. </html>