<!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>
|