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
<!doctype html>
<html class="no-js">
<head>
    [#include "/business/pages/include/print.html" /]
    [#include "/component/excExport.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-right: 27px;">
    [@excExp id="printDiv" name="月度服务满意度统计表" /]
</div>
<div style="text-align:center;margin-top:30px;"><h2>月度服务满意度统计表</h2></div>
<div id="printDiv" style="width:100%;height:380px;overflow:auto;">
    <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}</td>
            [/#list]
            [/#if]
        </tr>
        [#if tableData.MONTH??]
        <tr>
            <td>${tableData.MONTH}</td>
            <td>${tableData.XYL_SCORE}</td>
            <td>${tableData.ZC_SCORE}</td>
            <td>${tableData.ZCXYL_SCORE}</td>
            <td>${tableData.ALL_SCORE}</td>
        </tr>
        [/#if]
    </table>
</div>
</body>
</html>