64 lines
2.9 KiB
Plaintext
64 lines
2.9 KiB
Plaintext
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|||
|
|
pageEncoding="UTF-8"%>
|
|||
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|||
|
|
<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %>
|
|||
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|||
|
|
<html>
|
|||
|
|
<head>
|
|||
|
|
<%@ include file="/views/common.jsp" %>
|
|||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|||
|
|
<title>Insert title here</title>
|
|||
|
|
<link href="${ctx }/css/style.css" type="text/css" rel="stylesheet"/>
|
|||
|
|
<link rel="stylesheet" href="${ctx }/css/blueprint/screen.css" type="text/css" media="screen, projection">
|
|||
|
|
<link rel="stylesheet" href="${ctx }/css/blueprint/print.css" type="text/css" media="print">
|
|||
|
|
<link href="${ctx }/js/common/plugins/jui/themes/redmond/jquery-ui-1.9.2.custom.css" type="text/css" rel="stylesheet" />
|
|||
|
|
<link href="${ctx }/js/common/plugins/jui/extends/timepicker/jquery-ui-timepicker-addon.css" type="text/css" rel="stylesheet" />
|
|||
|
|
<link href="${ctx }/js/common/plugins/qtip/jquery.qtip.min.css" type="text/css" rel="stylesheet" />
|
|||
|
|
<script src="${ctx }/js/common/jquery-1.8.3.js" type="text/javascript"></script>
|
|||
|
|
<script src="${ctx }/js/common/plugins/jui/jquery-ui-1.9.2.min.js" type="text/javascript"></script>
|
|||
|
|
<script type="text/javascript" src="${ctx }/js/module/activiti/workflow.js"></script>
|
|||
|
|
<script type="text/javascript" src="${ctx }/js/module/oa/leave/leave-todo.js"></script>
|
|||
|
|
<script src="${ctx }/js/common/plugins/qtip/jquery.qtip.pack.js" type="text/javascript"></script>
|
|||
|
|
<script src="${ctx }/js/common/plugins/html/jquery.outerhtml.js" type="text/javascript"></script>
|
|||
|
|
<script type="text/javascript">
|
|||
|
|
var ctx = '<%=request.getContextPath() %>';
|
|||
|
|
</script>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<table width="100%" class="need-border">
|
|||
|
|
<thead>
|
|||
|
|
<tr>
|
|||
|
|
<th>假种</th>
|
|||
|
|
<th>申请人</th>
|
|||
|
|
<th>申请时间</th>
|
|||
|
|
<th>开始时间</th>
|
|||
|
|
<th>结束时间</th>
|
|||
|
|
<th>当前节点</th>
|
|||
|
|
<th>任务创建时间</th>
|
|||
|
|
<th>流程状态</th>
|
|||
|
|
<th>当前处理人</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody>
|
|||
|
|
<c:forEach items="${page.result }" var="leave">
|
|||
|
|
<c:set var="task" value="${leave.task }" />
|
|||
|
|
<c:set var="pi" value="${leave.processInstance }" />
|
|||
|
|
<tr id="${leave.id }" tid="${task.id }">
|
|||
|
|
<td>${leave.leaveType }</td>
|
|||
|
|
<td>${leave.userId }</td>
|
|||
|
|
<td>${leave.applyTime }</td>
|
|||
|
|
<td>${leave.startTime }</td>
|
|||
|
|
<td>${leave.endTime }</td>
|
|||
|
|
<td>
|
|||
|
|
<a class="trace" href='#' pid="${pi.id }" pdid="${pi.processDefinitionId}" ASSIGNEE="${task.assignee }" title="点击查看流程图">${task.name }</a>
|
|||
|
|
</td>
|
|||
|
|
<td>${task.createTime }</td>
|
|||
|
|
<td>${pi.suspended ? "已挂起" : "正常" };<b title='流程版本号'>V: ${leave.processDefinition.version }</b></td>
|
|||
|
|
<td>${task.assignee }</td>
|
|||
|
|
</tr>
|
|||
|
|
</c:forEach>
|
|||
|
|
</tbody>
|
|||
|
|
</table>
|
|||
|
|
<tags:pagination page="${page}" paginationSize="${page.pageSize}"/>
|
|||
|
|
</body>
|
|||
|
|
</html>
|