<div class="table_basic">
|
<table class="display_form" id="ciList" style="width:95%">
|
<tr class="title">
|
<td style="width:15%">配置名称(搜索码)</td>
|
<td style="width:25%">巡检项</td>
|
<td style="width:20%">巡检结果</td>
|
<td width="20%">备注</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 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>
|
<input type="radio" name="${ci.ID}-${xjx.ID}" [#if xjx.RESULT==1||xjx.RESULT=='']checked[/#if] value="1"/>正常
|
<input type="radio" name="${ci.ID}-${xjx.ID}" [#if xjx.RESULT==2]checked[/#if] value="2"/>告警
|
<input type="radio" name="${ci.ID}-${xjx.ID}" [#if xjx.RESULT==3]checked[/#if] value="3"/>异常
|
</td>
|
<td>
|
<input maxlength="200" style="width:95%;" name="noteresult" type="text" value="${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>
|