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