sysPlanPushGetMyDraft.jsp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_PLAN_PUSH管理</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_PLAN_PUSH管理列表</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="sysPlanPushList" id="sysPlanPushItem" 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="pushid" value="${sysPlanPushItem.pushid}">
  27. </display:column>
  28. <display:column property="superiorid" title="上级ID" sortable="true" sortName="SUPERIORID"></display:column>
  29. <display:column property="createplanid" title="创建日志人ID" sortable="true" sortName="CREATEPLANID"></display:column>
  30. <display:column property="planid" title="PLANID" sortable="true" sortName="PLANID"></display:column>
  31. <display:column title="管理" media="html" style="width:220px">
  32. <a href="del.ht?pushid=${sysPlanPushItem.pushid}" class="link del">删除</a>
  33. </display:column>
  34. </display:table>
  35. <hotent:paging tableId="sysPlanPushItem"/>
  36. </div><!-- end of panel-body -->
  37. </div> <!-- end of panel -->
  38. </body>
  39. </html>