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
[#include "/component/excExport.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(1,'printDiv');"><span>打印</span></a>
      </div>
   <div class="device" id="printDiv" style="padding:0;border:0;">
   
  <table border="0" class="reportTable">
  <tr class="titleTr">
  <td colspan="9">${Constants.CUSTOMER_CONSTANTS}服务满意度汇总表</td>
  </tr>
  <tr class="nameTr"><td colspan="9" style="text-align:right;">统计时间:[#if type??]${DateUtil.format("yyyy年MM月",beginMonth)}[#else]${DateUtil.format("yyyy年MM月",beginMonth)}-${DateUtil.format("yyyy年MM月",endMonth)}[/#if]</td></tr>
   <tr>
     <td class="tdbg" >序号</td>
     <td class="tdbg" align="center">${Constants.CUSTOMER_CONSTANTS}名称</td>
     <td class="tdbg" align="center">响应支持</td>
     <td class="tdbg" align="center">驻场服务</td>
     <td class="tdbg" align="center">满意度得分</td>
   </tr>
   [#if report ?? && report?size > 0]
   [#list report as satis]
   <tr>
     <td  align="center">${satis_index+1}</td>
     <td  align="center">${satis.CUSTOMER_NAME}</td>
     <td  align="center">${satis.XYSCORE}</td>
     <td  align="center">${satis.ZCSCORE}</td>
     <td  align="center">${satis.ALL_SCORE}</td>
   </tr>
   [/#list]
    [/#if]
    
    
    </table>
    </div>