1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html" %>
- <html>
- <head>
- <title>值班记录表管理</title>
- <%@include file="/commons/include/get.jsp" %>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">值班记录表管理列表</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="beOnDutyList" id="beOnDutyItem" 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="${beOnDutyItem.id}">
- </display:column>
- <display:column title="值班日期" sortable="true" sortName="F_DUTY_TIME">
- <fmt:formatDate value="${beOnDutyItem.FDutyTime}" pattern="yyyy-MM-dd"/>
- </display:column>
- <display:column property="FAperson" title="A岗值班者" sortable="true" sortName="F_APERSON" maxLength="80"></display:column>
- <display:column property="FApersonid" title="A岗值班者ID" sortable="true" sortName="F_APERSONID" maxLength="80"></display:column>
- <display:column property="FBperson" title="B岗值班者" sortable="true" sortName="F_BPERSON" maxLength="80"></display:column>
- <display:column property="FBpersonid" title="B岗值班者ID" sortable="true" sortName="F_BPERSONID" maxLength="80"></display:column>
- <display:column property="FLeadership" title="带班领导" sortable="true" sortName="F_LEADERSHIP" maxLength="80"></display:column>
- <display:column property="FLeadershipid" title="带班领导ID" sortable="true" sortName="F_LEADERSHIPID" maxLength="80"></display:column>
- <display:column title="管理" media="html" style="width:220px">
- <a href='edit.ht?id=${beOnDutyItem.id}&taskId=${beOnDutyItem.taskId}' class="link edit">处理</a>
- </display:column>
- </display:table>
- <hotent:paging tableId="beOnDutyItem"/>
- </div><!-- end of panel-body -->
- </div> <!-- end of panel -->
- </body>
- </html>
|