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
 <table>
            <tr class="title">
                 <td style="width:7%">序号</td>
                 <td style="width:10%">配置关系</td>
                 <td style="width:15%">搜索码</td>
                 <td style="width:20%">分类名称</td>
                 <td style="width:10%">配置项名称</td>
            </tr>
    [#if devices??&&devices?size>0]
            [#list devices as device]
            <tr>
                <td><input type="hidden" name="dslId" value="${device.ID}">${pagesize+(device_index+1)}</td>
                <td>${Constants.getCMDB_CI_RELATION_RELATION_Label(device.RELATION)}</td>
                <td>${device.SEACHCODE}</td>
                <td>${device.FIRSTLEVELNAME}->${device.SECONDLEVELNAME}->${device.THIRDLEVELNAME}</td>
                <td>${device.CINAME}</td>
            </tr>
            [/#list]
    [#else]
        <tr>
            <td align="center" colspan="6">暂无信息</td>
        </tr>
    [/#if]
    </table>