123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html" %>
- <html>
- <head>
- <title>SYS_NOTICE_SUPERVISION_REPLY管理</title>
- <%@include file="/commons/include/get.jsp" %>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">SYS_NOTICE_SUPERVISION_REPLY管理列表</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group"><a class="link add" href="edit.ht"><span></span>添加</a></div>
- </div>
- </div>
- </div>
- <div class="panel-body">
- <c:set var="checkAll">
- <input type="checkbox" id="chkall"/>
- </c:set>
- <display:table name="sysNoticeSupervisionReplyList" id="sysNoticeSupervisionReplyItem" requestURI="list.ht" sort="external" cellpadding="1" cellspacing="1" class="table-grid">
- <display:column title="${checkAll}" media="html" style="width:30px;">
- <input type="checkbox" class="pk" name="id" value="${sysNoticeSupervisionReplyItem.id}">
- </display:column>
- <display:column property="bullentinid" title="督查通知公告id" sortable="true" sortName="BULLENTINID"></display:column>
- <display:column property="personnelid" title="人员id" sortable="true" sortName="PERSONNELID"></display:column>
- <display:column property="organizationid" title="组织ID" sortable="true" sortName="ORGANIZATIONID"></display:column>
- <display:column property="personnelname" title="人员名称即提交人" sortable="true" sortName="PERSONNELNAME"></display:column>
- <display:column property="attachment" title="附件" sortable="true" sortName="ATTACHMENT" maxLength="80"></display:column>
- <display:column property="organizationname" title="组织名称" sortable="true" sortName="ORGANIZATIONNAME"></display:column>
- <display:column title="回复时间" sortable="true" sortName="REPLLYTIME">
- <fmt:formatDate value="${sysNoticeSupervisionReplyItem.repllytime}" pattern="yyyy-MM-dd"/>
- </display:column>
- <display:column property="replytitle" title="回复标题" sortable="true" sortName="REPLYTITLE"></display:column>
- <display:column title="管理" media="html" style="width:220px">
- <a href='edit.ht?id=${sysNoticeSupervisionReplyItem.id}&taskId=${sysNoticeSupervisionReplyItem.taskId}' class="link edit">处理</a>
- </display:column>
- </display:table>
- <hotent:paging tableId="sysNoticeSupervisionReplyItem"/>
- </div><!-- end of panel-body -->
- </div> <!-- end of panel -->
- </body>
- </html>
|