cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
45
46
47
48
49
50
51
52
53
54
<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>