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
<!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" style="position:fixed;top:10px;right:10px;">
        <a class="common close" href="javascript:window.close();"><span>关闭</span></a>
        [@excExp id="printDiv" name="配置信息统计" /]
    </div>
        <div style="text-align:center;margin-top:30px;"><h2>配置信息统计表</h2></div>
        <div id="printDiv">
        <table class="mytable" style="margin:0 auto;text-align:center;width:1400px;margin:10px;">
            
            <tr>
                <td>分类</td>
                <td>配置数量</td>
            </tr>
            
            [#if resMap.tableData??&&resMap.tableData?size>0]
                [#list resMap.tableData as item]
                <tr>
                    <td>${item.name}</td>
                    <td>${item.num}</td>
                </tr>    
                [/#list]
            [/#if]
        </table>
        </div>
</body>
</html>