<!doctype html>
|
<html class="no-js">
|
<head>
|
[#include "/business/pages/include/print.html" /]
|
[#include "/component/excExport.html" /]
|
[#include "/business/pages/include/printOne.html" /]
|
<meta charset="utf-8">
|
<title></title>
|
<style>
|
.mytable{
|
border-collapse: collapse;
|
border-spacing: 0;
|
}
|
.mytable td{
|
padding:5px 10px;
|
border:1px solid #ccc;
|
color:#666;
|
font-size:12px;
|
line-height:24px;
|
}
|
.bgcolor {
|
background-color:#f0f0f0;
|
}
|
</style>
|
</head>
|
<body class="fullscreen">
|
[#include "/business/pages/include/static.html" /]
|
<div class="check_btn clearfix" style="margin: 13px 10px 0 0;">
|
<!--[if lte IE 9]>
|
<a id="export_btn" style="float:right" tableId="reportTable" fn="驻场工程师每天工作量统计">Flash required</a>
|
<![endif]-->
|
<a class="common export" href="javascript:exportXlsById('reportTable','驻场工程师每天工作量统计');"><span>导出</span></a>
|
</div>
|
<div style="text-align:center;margin-top:30px;"><h2>驻场工程师每天工作量统计</h2></div>
|
<div style="text-align:center;"><h4>${DateUtil.format('yyyy年MM月dd日',RequestParameters.beginDay)}-${DateUtil.format('yyyy年MM月dd日',RequestParameters.endDay)}</h4></div>
|
<div id="printDiv" style="overflow-x:auto;width:100%;height:600px;">
|
<table class="mytable" id="reportTable" style="margin:0 auto;text-align:center;width:100%;margin:10px;">
|
<tr class="bgcolor">
|
<!-- 标题栏 -->
|
<td width="8%" class="tdbg">姓名</td>
|
[#list report.dayList as day]
|
<td width="8%" class="tdbg" >${DateUtil.format('yyyy/MM/dd',day.day)}</td>
|
[/#list]
|
</tr>
|
<!-- 数据栏 -->
|
[#if report.userList??&&report.userList?size>0]
|
[#list report.userList as user]
|
<tr>
|
<td>${user.zsxm}</td>
|
[#list user.dayList as day]
|
<td>${day.num}</td>
|
[/#list]
|
</tr>
|
[/#list]
|
[/#if]
|
</table>
|
</div>
|
</body>
|
</html>
|