cy
2022-06-23 da30b02214ab3a35a3b2ac163afce87e70a39ff4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<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"/>正常&nbsp;&nbsp;
                    <input type="radio" name="${ci.ID}-${xjx.ID}" [#if xjx.RESULT==2]checked[/#if] value="2"/>告警&nbsp;&nbsp;
                    <input type="radio" name="${ci.ID}-${xjx.ID}" [#if xjx.RESULT==3]checked[/#if] value="3"/>异常&nbsp;&nbsp;
                </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>