cy
2022-06-22 6e06bba1c89f8077e29d0fbf0ce12f89f027d8d2
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
[#if devices?? && devices?size>0]
<table class="display_form common_list_table">
<tr class="title">
            <td>序号</td>
            <td>分类</td>
            <td>搜索码</td>
            <td>配置名称</td>
            <td>状态</td>
        </tr>
            [#list devices as device]
            <tr>
                <td><input class="pos deivceId" type="checkbox" value="${device.ID}-${device.UPDTYPE}"/>${device_index+1}</td>
                <td>${device.FIRSTLEVELNAME}->${device.SECONDLEVELNAME}->${device.THIRDLEVELNAME}</td>
                <td>${device.SEARCHCODE}</td>
                <td>${device.CINAME}</td>
                [#if device.STATE == 1]
                   <td>正常</td>
                   [#elseif device.STATE == 2]
                   <td>废弃</td>
                   [#else]
                   <td>新增</td>
                   [/#if]
            </tr>
        [/#list]  
       </table>
       [#else]
       <div class="loadpos"><span class="nodata"></span></div>
       [/#if]