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
 <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>
                 <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.AFTER_RELATION_TYPE)}</td>
                <td>${device.SEACHCODE}</td>
                <td>${device.FIRSTLEVELNAME}->${device.SECONDLEVELNAME}->${device.THIRDLEVELNAME}</td>
                <td>${device.CINAME}</td>
                <td  class="list_btnmore_wrap">
                    <a class="blue_txt lb_button"  id="version" href="javascript:editrelation('${device.ID}');"><span>修改</span></a>
                    <a class="blue_txt"  id="info" href="javascript:delrelation('${device.ID}');"><span>删除</span></a>
                </td>
            </tr>
            [/#list]
    [#else]
        <tr>
            <td align="center" colspan="6">暂无信息</td>
        </tr>
    [/#if]
    </table>