[#include "/component/excExport.html" /]
|
[#if report??]
|
<script type="text/javascript">
|
|
</script>
|
|
<div class="check_btn clearfix" style="margin-right: 27px;">
|
[@excExp id="printDiv" name="问题处理情况" /]
|
<a class="common print" href="javascript:printA4(1,'printDiv');"><span>打印</span></a>
|
</div>
|
<div id="printDiv">
|
<table border="0" class="reportTable tablew" id="reportTable">
|
<tr class="titleTr">
|
<td colspan="${report.lebalList?size}">问题处理情况统计</td>
|
</tr>
|
<tr class="nameTr">
|
<td colspan="2" align="left" valign="bottom" style="padding:1px;">${RequestParameters.cusName}</td>
|
<td colspan="${report.lebalList?size-5}"> </td>
|
<td colspan="3" style="text-align:right;">统计日期:${DateUtil.format("yyyy/MM/dd",RequestParameters.beginDay)}-${DateUtil.format("yyyy/MM/dd",RequestParameters.endDay)}</td>
|
</tr>
|
|
[#if report.lebalList??&&report.lebalList?size>0]
|
<tr>
|
[#list report.lebalList as item]
|
[#if item_index==0]
|
<td width="11%" class="tdbg">${item}</td>
|
[#else]
|
<td width="6%" class="tdbg">${item}</td>
|
[/#if]
|
[/#list]
|
</tr>
|
[/#if]
|
|
[#if report.dataList??&&report.dataList?size>0]
|
[#list report.dataList as dataList]
|
<tr>
|
[#list dataList as item]
|
<td>${item}</td>
|
[/#list]
|
</tr>
|
[/#list]
|
[#else]
|
<tr>
|
<td colspan="${report.lebalList?size}">暂无数据</td>
|
</tr>
|
[/#if]
|
|
</table>
|
</div>
|
[/#if]
|
<div id="reportDiv">
|