<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>健康检查明细表</title>
|
[#include "/business/pages/include/static.html" /]
|
[#include "/business/pages/include/header.html" /]
|
[#include "/component/excExport.html" /]
|
</head>
|
|
<body class="fullscreen">
|
[#include "/business/pages/include/print.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(2,'printDiv');"><span>打印</span></a>
|
<a class="common" href="${base}/business/pages/health/healthReport.html?flowId=${RequestParameters.flowId}&orderId=${RequestParameters.orderId}"><span>健康检查服务报告</span></a>
|
</div>
|
|
|
<div class="device" id="printDiv" style="padding:0;border:0;">
|
<table border="0" class="reportTable ">
|
<tr class="titleTr">
|
<td colspan="7">健康检查明细表</td>
|
</tr>
|
<tr class="nameTr">
|
<td colspan="7" align="left" valign="bottom" style="padding:1px;">执行人:${dealerMap.CURRENT_DEALER_NAME}</td>
|
</tr>
|
<tr>
|
<td class="tdbg" width="80px">序号</td>
|
<td class="tdbg" width="150px">配置信息</td>
|
<td class="tdbg" width="100px">检查项名称</td>
|
<td class="tdbg" width="70px">检查结果</td>
|
<td class="tdbg" width="150px">执行说明</td>
|
<td class="tdbg" width="70px">执行人</td>
|
<td class="tdbg" width="200px">运行健康说明及优化建议</td>
|
</tr>
|
[#if ciList?? && ciList?size>0]
|
[#list ciList as ci]
|
[#if ci.itemList??&&ci.itemList?size>0]
|
[#list ci.itemList as item]
|
<tr>
|
[#if item_index==0]
|
<td rowspan="${ci.itemList?size}">${ci_index+1}</td>
|
<td rowspan="${ci.itemList?size}">${ci.SEARCHCODE}<br>${ci.CINAME}<br>${ci.POSITION}</td>
|
[/#if]
|
<td>${item.ITEM_NAME}</td>
|
<td>${item.ITEM_RESULT}</td>
|
<td>${item.ORDER_NOTE}</td>
|
<td>${item.USER_NAME}</td>
|
[#if item_index==0]
|
<td rowspan="${ci.itemList?size}">${ci.ORDER_NOTE}</td>
|
[/#if]
|
</tr>
|
[/#list]
|
|
[/#if]
|
[/#list]
|
[/#if]
|
</table>
|
</div>
|
|
[#include "/business/pages/include/footer.html" /]
|
</body>
|
</html>
|