cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
[#include "/component/excExport.html" /]
[#if report??]
[#include "/business/pages/include/print.html" /]
<div class="check_btn clearfix">
    [@excExp id="printDiv" name="驻场事件关闭情况统计" /]
    <a class="common print" href="javascript:printA4(1,'printDiv');"><span>打印</span></a>
</div>
<div id="printDiv" style="padding:0;border:0;">
    <table border="0" class="reportTable">
        <tr class="titleTr">
            <td colspan="${report.lebalList?size}">驻场事件关闭情况统计</td>
        </tr>
        <tr class="nameTr" >
            <td colspan="2" align="left" valign="bottom" style="padding:1px;">${Constants.CUSTOMER_CONSTANTS}名称:${RequestParameters.cusName}</td>
            <td colspan="${report.lebalList?size-5}">&nbsp;</td>
            <td colspan="3" style="text-align:right;">统计日期:${DateUtil.format("yyyy/MM/dd",RequestParameters.beginDay)}-${DateUtil.format("yyyy/MM/dd",RequestParameters.endDay)}</td>
        </tr>
 
        [#if report.lebalList??&&report.lebalList?size>0]
        <tr>
            [#list report.lebalList as item]
                [#if item_index==0]
                    <td class="tdbg">${item}</td>
                [#else]
                    <td width="6%" class="tdbg" nowrap>${item}</td>
                [/#if]
            [/#list]
        </tr>
        [/#if]
        
        [#if report.dataList??&&report.dataList?size>0]
            [#list report.dataList as dataList]
                <tr>
                    [#list dataList as item]
                    <td>${item}</td>
                    [/#list]
                </tr>
            [/#list]
        [#else]
            <tr>
                <td colspan="${report.lebalList?size}">暂无数据</td>
            </tr>
        [/#if]
 
    </table>
</div>
[/#if]