<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>问题明细统计</title>
|
[#include "/business/pages/include/print.html" /]
|
[#include "/component/excExport.html" /]
|
<script language="javascript" src="${common_static}/static/plugins/print/LodopFuncs.js"></script>
|
<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>
|
|
[#include "/business/pages/include/static.html" /]
|
<body class="fullscreen">
|
<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 id="printDiv">
|
<div style="text-align:center;margin-top:30px;"><h2>问题明细统计</h2></div>
|
<div style="text-align:center;"><h4>${RequestParameters.cusName}(${DateUtil.format("yyyy/MM/dd",RequestParameters.beginDay)}-${DateUtil.format("yyyy/MM/dd",RequestParameters.endDay)})</h4></div>
|
[#if report??]
|
<table class="mytable" style="margin:0 auto;text-align:center;width:3500px;margin:10px;">
|
<!-- <tr class="nameTr">
|
<td colspan="2" align="left" valign="bottom" style="padding:1px;">${Constants.CUSTOMER_CONSTANTS}名称:${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 class="bgcolor">
|
[#list report.lebalList as item]
|
<td width="6%" class="tdbg">${item}</td>
|
[/#list]
|
</tr>
|
[/#if]
|
|
[#if report.dataList??&&report.dataList?size>0]
|
[#list report.dataList as dataList]
|
<tr>
|
[#list dataList as item]
|
[#if item_index==0]
|
<td>${dataList_index+1}</td>
|
[/#if]
|
[#if item_index==9]
|
<td>${Constants.getmapSC_WORKFLOW_QUESTION_STATE_Label(item+"")}</td>
|
[#else]
|
<td>${item}</td>
|
[/#if]
|
[/#list]
|
</tr>
|
[/#list]
|
[#else]
|
<tr>
|
<td colspan="${report.lebalList?size}">暂无数据</td>
|
</tr>
|
[/#if]
|
</table>
|
[/#if]
|
</div>
|
</body>
|
</html>
|