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
<!doctype html>
<html class="no-js">
<head>
[#include "/business/pages/include/print.html" /]
    [#include "/component/excExport.html" /]
<meta charset="utf-8">
<title>${subTitle}调查统计表</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" style="position:fixed;top:10px;right:10px;">
        <a class="common close" href="javascript:window.close();"><span>关闭</span></a>
        [@excExp id="printDiv" name="${subTitle}调查满意度调查大项得分统计" /]
    </div>
        <div style="text-align:center;margin-top:30px;"><h2>${subTitle}调查满意度调查大项得分统计表</h2></div>
        <div id="printDiv">
        <table class="mytable" style="margin:0 auto;text-align:center;width:1400px;margin:10px;">
            
            <tr>
                <td >时间</td>
                [#if tableLabel??&&tableLabel?size>0]
                    [#list tableLabel as item]
                    <td>${item.name}</td>
                    [/#list]
                [/#if]
            </tr>
            [#if tableData??&&tableData?size>0]
                   [#list tableData as itemList]
                   <tr>
                       [#if itemList??&&itemList?size>0]
                       [#list itemList as item]
                       <td>${item}</td>
                       [/#list]
                       [/#if]
                   </tr>
                   [/#list]
            [/#if]
            
            
            
        </table>
        </div>
</body>
</html>