<!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 "/business/pages/include/header.html" /]
|
[#assign focusLabel = Constants.WORKFLOW_BASE_BUSINESS_TYPE_CI_REMIND]
|
[#include "/business/pages/ciremind/myheader.html" /]
|
[#include "/component/excExport.html" /]
|
</head>
|
|
<body class="fullscreen">
|
|
<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/ciremind/orderdeal/remindItemInfo.html?orderId=${RequestParameters.orderId}&flowId=${RequestParameters.flowId}"><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="5">例行维护执行记录表</td>
|
</tr>
|
<tr id="nameTr">
|
<td colspan="5" align="left" valign="bottom" style="padding:1px;">执行单编号:${remind.order_code}</td>
|
</tr>
|
<tr>
|
<td class="device_mtable_tdbg" width="80px">配置名称</td>
|
<td class="device_mtable_tdbg" width="220px">存放位置</td>
|
<td class="device_mtable_tdbg" width="60px">执行人</td>
|
<td class="device_mtable_tdbg" width="60px">执行结果</td>
|
<td class="device_mtable_tdbg" width="250px">备注</td>
|
|
</tr>
|
[#if detailList?? && detailList?size>0]
|
[#list detailList as detail]
|
<tr>
|
<td>${detail.CINAME}</td>
|
<td>${detail.POSITION}</td>
|
<td>${detail.USER_NAME}</td>
|
|
<td>${detail.DEAL_STATE}</td>
|
<td>${detail.ORDER_NOTE}</td>
|
</tr>
|
[/#list]
|
[/#if]
|
</table>
|
</div>
|
|
|
[#include "/business/pages/include/footer.html" /]
|
</body>
|
</html>
|