<div class="device" id="printDiv" style="padding: 0; border: 0;">
|
<table border="0" class="reportTable ">
|
<tr class="titleTr">
|
<td colspan="7">日常巡检明细表</td>
|
</tr>
|
|
<tr>
|
<td class="tdbg" width="40px">序号</td>
|
<td class="tdbg" width="150px">配置信息</td>
|
<td class="tdbg" width="200px">巡检项名称</td>
|
<td class="tdbg" width="70px">巡检结果</td>
|
<td class="tdbg" width="250px">执行说明</td>
|
</tr>
|
[#if ciList??&&ciList?size>0]
|
[#list ciList as ci]
|
<tr>
|
<td [#if ci.xjxlist??&&ci.xjxlist?size>0] rowspan="${ci.xjxlist?size}" [/#if]><a>${ci_index+1}</a></td>
|
<td [#if ci.xjxlist??&&ci.xjxlist?size>0] rowspan="${ci.xjxlist?size}" [/#if]><a class="blue_txt lb_button" target="_blank" href="${base}/business/pages/cfg/cfgInfoIndex.html?id=${ci.ID}">${ci.CINAME}(${ci.SEARCHCODE})</a></td>
|
[#if ci.xjxlist?? && ci.xjxlist?size > 0]
|
[#list ci.xjxlist as xjx]
|
[#if xjx_index != 0]
|
<tr>
|
[/#if]
|
<td>${xjx.ITEM_NAME}<input class="${ci.ID}" v="${xjx.ITEM_NAME}" name="itemIdresult" type="hidden" value="${ci.ID}-${xjx.ID}"/></td>
|
<td>
|
[#if xjx.RESULT==1]
|
正常
|
[#elseif xjx.RESULT==2]
|
告警
|
[#elseif xjx.RESULT==3]
|
异常
|
[/#if]
|
</td>
|
<td>
|
${xjx.NOTE}
|
</td>
|
[#if xjx_index != 0]
|
</tr>
|
[/#if]
|
[/#list]
|
[/#if]
|
[#if ci_index == 0]
|
</tr>
|
[/#if]
|
[/#list]
|
[#else]
|
<tr>
|
<td colspan="5" align="center">无需要巡检配置</td>
|
</tr>
|
[/#if]
|
|
|
</table>
|
</div>
|