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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>问题明细统计</title>
[#include "/business/pages/include/print.html" /]
    [#include "/component/excExport.html" /]
<script language="javascript" src="${common_static}/static/plugins/print/LodopFuncs.js"></script>
    <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>
 
[#include "/business/pages/include/static.html" /] 
<body class="fullscreen">
<div class="check_btn" style="position:fixed;top:10px;right:10px;">
        <a class="common close" href="javascript:window.close();"><span>关闭</span></a>
        [@excExp id="printDiv" name="事件类型统计" /]
    </div>
        <div id="printDiv">
        <div style="text-align:center;margin-top:30px;"><h2>问题明细统计</h2></div>
        <div style="text-align:center;"><h4>${RequestParameters.cusName}(${DateUtil.format("yyyy/MM/dd",RequestParameters.beginDay)}-${DateUtil.format("yyyy/MM/dd",RequestParameters.endDay)})</h4></div>
        [#if report??]
        <table class="mytable" style="margin:0 auto;text-align:center;width:3500px;margin:10px;">
                <!-- <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 class="bgcolor">
                    [#list report.lebalList as item]
                        <td width="6%" class="tdbg">${item}</td>
                    [/#list]
                </tr>
                [/#if]
                
                [#if report.dataList??&&report.dataList?size>0]
                    [#list report.dataList as dataList]
                        <tr>
                            [#list dataList as item]
                                [#if item_index==0]
                                    <td>${dataList_index+1}</td>
                                [/#if]
                                [#if item_index==9]
                                    <td>${Constants.getmapSC_WORKFLOW_QUESTION_STATE_Label(item+"")}</td>
                                [#else]
                                    <td>${item}</td>
                                [/#if]
                            [/#list]
                        </tr>
                    [/#list]
                [#else]
                    <tr>
                        <td colspan="${report.lebalList?size}">暂无数据</td>
                    </tr>
                [/#if]
            </table>
        [/#if]
        </div>
</body>
</html>