1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html" %>
- <html>
- <head>
- <title>SYS_PLAN_PUSH管理</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_PLAN_PUSH管理列表</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="sysPlanPushList" id="sysPlanPushItem" 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="pushid" value="${sysPlanPushItem.pushid}">
- </display:column>
- <display:column property="superiorid" title="上级ID" sortable="true" sortName="SUPERIORID"></display:column>
- <display:column property="createplanid" title="创建日志人ID" sortable="true" sortName="CREATEPLANID"></display:column>
- <display:column property="planid" title="PLANID" sortable="true" sortName="PLANID"></display:column>
- <display:column title="管理" media="html" style="width:220px">
- <a href='edit.ht?pushid=${sysPlanPushItem.pushid}&taskId=${sysPlanPushItem.taskId}' class="link edit">处理</a>
- </display:column>
- </display:table>
- <hotent:paging tableId="sysPlanPushItem"/>
- </div><!-- end of panel-body -->
- </div> <!-- end of panel -->
- </body>
- </html>
|