<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>健康检查明细表</title>
|
[#include "/business/pages/include/static.html" /]
|
[#include "/business/pages/include/print.html" /]
|
[#include "/component/excExport.html" /]
|
|
</head>
|
|
<body class="fullscreen">
|
[#include "/uc/include/header.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>
|
<a class="common" href="${base}/uc/uchealth/uchealthReport.html?flowId=${RequestParameters.flowId}&orderId=${RequestParameters.orderId}"><span>健康检查服务报告</span></a>
|
</div>
|
<div class="device" id="printDiv" style="padding:0;border:0;">
|
<style type="text/css">
|
.mailTab{
|
width:290mm;
|
margin:0px auto;
|
font-size:12px;
|
color:#121212;
|
text-align:center;
|
border-collapse:collapse;
|
}
|
.mailTab td{
|
border:1px solid #888;padding:8px 5px; margin:0;line-height:22px;
|
}
|
#nameTr{ border:0px; }
|
#nameTr td{border:0px; font-size:12px; color:#121212;line-height:20px; }
|
|
#titleTr{ border:0px; }
|
#titleTr td{ border:0px; font-size:25px;font-face:微软雅黑;}
|
</style>
|
<table border="0" class="mailTab">
|
<tr id="titleTr">
|
<td colspan="7">健康检查明细表</td>
|
</tr>
|
<tr id="nameTr">
|
<td colspan="7" align="left" valign="bottom" style="padding:1px;">执行人:${dealerMap.CURRENT_DEALER_NAME}</td>
|
</tr>
|
<tr>
|
<td class="device_mtable_tdbg" width="80px">序号</td>
|
<td class="device_mtable_tdbg" width="150px">配置信息</td>
|
<td class="device_mtable_tdbg" width="100px">检查项名称</td>
|
<td class="device_mtable_tdbg" width="70px">检查结果</td>
|
<td class="device_mtable_tdbg" width="150px">执行说明</td>
|
<td class="device_mtable_tdbg" width="70px">执行人</td>
|
<td class="device_mtable_tdbg" width="200px">运行健康说明及优化建议</td>
|
</tr>
|
[#if ciList?? && ciList?size>0]
|
[#list ciList as ci]
|
<tr>
|
<td [#if ci.itemList??&&ci.itemList?size>0]rowspan="${ci.itemList?size}"[/#if]>${ci_index+1}</td>
|
<td [#if ci.itemList??&&ci.itemList?size>0]rowspan="${ci.itemList?size}"[/#if]>${ci.SEACHCODE}<br>${ci.CINAME}<br>${ci.POSITION}</td>
|
[#if ci.itemList??&&ci.itemList?size>0]
|
[#list ci.itemList as item]
|
<td>${item.ITEM_NAME}</td>
|
<td>${item.ITEM_RESULT}</td>
|
<td>${item.ORDER_NOTE}</td>
|
<td>${item.USER_NAME}</td>
|
[/#list]
|
[#else]
|
<td> </td>
|
<td> </td>
|
<td> </td>
|
<td> </td>
|
[/#if]
|
<td [#if ci.itemList??&&ci.itemList?size>0]rowspan="${ci.itemList?size}"[/#if]>${ci.ORDER_NOTE}</td>
|
</tr>
|
[/#list]
|
[/#if]
|
</table>
|
</div>
|
|
|
[#include "/business/pages/include/footer.html" /]
|
</body>
|
</html>
|