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
58
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>配置采集明细</title>
[#include "/business/pages/include/static.html" /] 
[#include "/business/pages/include/print.html" /]
    [#include "/component/excExport.html" /]
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
[#assign focusLabel = "DETAIL"]
[#include "/business/pages/include/reportCollectionHeader.html" /]
 
 
    <div class="check_btn clearfix">
        <a class="common close" href="javascript:window.close();"><span>关闭</span></a>
        [@excExp id="printDiv" name="配置采集明细" /]
        <a class="common print" href="javascript:printA4(2,'printDiv');"><span>打印</span></a>
    </div>
        
        <div id="printDiv">
        <table border="0" class="reportTable tablew">
            <tr class="titleTr">
                <td colspan="5">配置采集明细</td>
            </tr>
            <tr>
                <td class="tdbg">编码</td>
                <td class="tdbg">名称</td>
                <td class="tdbg">存放位置</td>
                <td class="tdbg">厂商</td>
                <td class="tdbg">集成商</td>
            </tr>
            [#if resList??&&resList?size>0]
            [#list resList as group]
            <tr>
                <td colspan="5" align="left">${group.name}</td>
            </tr>
                [#if group.dataList??&&group.dataList?size>0]
                [#list group.dataList as item]
                <tr>
                    <td>${item.SEACHCODE}</td>
                    <td>${item.CINAME}</td>
                    <td>${item.POSITION}</td>
                    <td>${item.MAINUFACTURERNAME}</td>
                    <td>${item.SYSTEMINTEGRATIONNAME}</td>
                </tr>
                [/#list]
                [/#if]    
            [/#list]
            [/#if]
            
            
        </table>
        
</body>
</html>