sysNoticeSupervisionReplyGetMyDraft.jsp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html" %>
  3. <html>
  4. <head>
  5. <title>SYS_NOTICE_SUPERVISION_REPLY管理</title>
  6. <%@include file="/commons/include/get.jsp" %>
  7. </head>
  8. <body>
  9. <div class="panel">
  10. <div class="panel-top">
  11. <div class="tbar-title">
  12. <span class="tbar-label">SYS_NOTICE_SUPERVISION_REPLY管理列表</span>
  13. </div>
  14. <div class="panel-toolbar">
  15. <div class="toolBar">
  16. <div class="group"><a class="link add" href="edit.ht"><span></span>添加</a></div>
  17. </div>
  18. </div>
  19. </div>
  20. <div class="panel-body">
  21. <c:set var="checkAll">
  22. <input type="checkbox" id="chkall"/>
  23. </c:set>
  24. <display:table name="sysNoticeSupervisionReplyList" id="sysNoticeSupervisionReplyItem" requestURI="list.ht" sort="external" cellpadding="1" cellspacing="1" class="table-grid">
  25. <display:column title="${checkAll}" media="html" style="width:30px;">
  26. <input type="checkbox" class="pk" name="id" value="${sysNoticeSupervisionReplyItem.id}">
  27. </display:column>
  28. <display:column property="bullentinid" title="督查通知公告id" sortable="true" sortName="BULLENTINID"></display:column>
  29. <display:column property="personnelid" title="人员id" sortable="true" sortName="PERSONNELID"></display:column>
  30. <display:column property="organizationid" title="组织ID" sortable="true" sortName="ORGANIZATIONID"></display:column>
  31. <display:column property="personnelname" title="人员名称即提交人" sortable="true" sortName="PERSONNELNAME"></display:column>
  32. <display:column property="attachment" title="附件" sortable="true" sortName="ATTACHMENT" maxLength="80"></display:column>
  33. <display:column property="organizationname" title="组织名称" sortable="true" sortName="ORGANIZATIONNAME"></display:column>
  34. <display:column title="回复时间" sortable="true" sortName="REPLLYTIME">
  35. <fmt:formatDate value="${sysNoticeSupervisionReplyItem.repllytime}" pattern="yyyy-MM-dd"/>
  36. </display:column>
  37. <display:column property="replytitle" title="回复标题" sortable="true" sortName="REPLYTITLE"></display:column>
  38. <display:column title="管理" media="html" style="width:220px">
  39. <a href="del.ht?id=${sysNoticeSupervisionReplyItem.id}" class="link del">删除</a>
  40. </display:column>
  41. </display:table>
  42. <hotent:paging tableId="sysNoticeSupervisionReplyItem"/>
  43. </div><!-- end of panel-body -->
  44. </div> <!-- end of panel -->
  45. </body>
  46. </html>