cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
36
37
38
39
40
[#include "/component/excExport.html" /]
[#include "/business/pages/include/printOne.html" /]
[#if reports?? && reports?size>0]
<div class="check_btn clearfix" style="margin: 13px 10px 0 0;">
                <!--[if lte IE 9]>
                <a id="export_btn" style="float:right" tableId="reportTable" fn="问题达成率报表">Flash required</a>
                <![endif]-->
                <a class="common export" href="javascript:exportXlsById('reportTable','问题达成率报表');"><span>导出</span></a>
            </div>
<div class="device" id="printDiv" style="padding:0;border:0;">
  <table border="0" class="reportTable" id="reportTable">
  <tr class="titleTr">
  <td colspan="6">问题达成率报表</td>
  </tr>
  <tr class="nameTr">
      <td colspan="2" align="left" valign="bottom" style="padding:1px;">${Constants.CUSTOMER_CONSTANTS}名称:${cusName}</td>
      <td colspan="2" align="left"></td>
      <td colspan="2" align="left"></td>
  </tr>
  <tr>
     <td class="tdbg">服务目录</td>
     <td class="tdbg" width="15%">问题数</td>
     <td class="tdbg" width="15%">超时数</td>
     <td class="tdbg" width="15%">达成率</td>
   </tr>
   
   [#list reports as report]
       <tr>
         <td>${report.FIRST_CATEGORY_NAME}->${report.SECOND_CATEGORY_NAME}->${report.THIRD_CATEGORY_NAME}</td>
         <td>${report.NUM}</td>
         <td>${report.cs}</td>
         <td>${report.jjl}[#if report.jjl!=0]%[/#if]</td>
       </tr>
   [/#list]
   
  </table>
  </div>
 [#else]
 <div class="loadpos"><span class="nodata"></span></div>
 [/#if]