cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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>