<%@ page contentType="text/html;charset=UTF-8" %>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
<html>
|
<head>
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<link href="${ctx}/static/bootstrap/2.3.2/css/bootstrap.min.css" type="text/css" rel="stylesheet"/>
|
<script src="${ctx}/static/jquery/jquery-1.9.1.min.js" type="text/javascript"></script>
|
<script language="javascript" type="text/javascript" src="${ctx}/static/util.js"></script>
|
<title>统计详情</title>
|
<script type="text/javascript">
|
$(document).ready(function(){
|
var allstatu = $("#allstatu").attr("allstatu");
|
var info = $("#info").attr("info");
|
$("#infos").html("<img src=\"/gmms2/static/images/danger.jpg\">"+" "+info);
|
if(allstatu == 0){
|
$("#allstatus").attr("style","background-color:#f00");
|
}
|
});
|
</script>
|
</head>
|
<body>
|
<div align="left" style="margin-left: 20px;margin-top: 20px;">
|
<font style="font-size: x-large;"><a href="${ctx}/reportmanage/taskreport2">返回上级</a></font>
|
</div>
|
<div id = "allstatu" allstatu = "${allstatu}"></div>
|
<div id = "info" info = "${info}"></div>
|
<hr>
|
<table style="width: 100%;">
|
<tr>
|
<td style="width: 100%; border: 15px solid white; vertical-align: top;">
|
<fieldset>
|
<legend>Task Report</legend>
|
<div style="overflow: auto;">
|
<table class="table table-striped table-hover">
|
<tr>
|
<th width="200px" height="40px" align="left">文件名</th>
|
<th width="200px" height="40px" align="left">片数</th>
|
<th width="200px" height="40px" align="left">状态</th>
|
<th width="200px" height="40px" align="left">完成时间</th>
|
<th width="200px" height="40px" align="left">理由</th>
|
</tr>
|
<c:forEach items="${reportTasks}" var="reportTask" varStatus="status1">
|
<tr>
|
<td height="30px">${reportTask.opt_name}</td>
|
<td height="30px">1</td>
|
<td height="30px">${reportTask.state}</td>
|
<td height="30px">${reportTask.complete_time}</td>
|
<td height="30px">${reportTask.reson}</td>
|
</tr>
|
</c:forEach>
|
</table>
|
</div>
|
</fieldset>
|
</td>
|
</tr>
|
</table>
|
|
</body>
|
</html>
|