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
[#if devices?? && devices?size>0]
           <table  class="display_form common_list_table">
                   <tbody>
                       <tr class="title">
                           <td>序号</td>
                           <td>分类名称</td>
                           <td>搜索码</td>
                           <td>配置名称</td>
                           <td>状态</td>
                       </tr>
                           [#list devices as device]
                           <tr>
                                   <td>${device_index+1}</td>
                                   <td>${device.FIRSTLEVELNAME}->${device.SECONDLEVELNAME}->${device.THIRDLEVELNAME}</td>
                                   <td>${device.SEACHCODE}</td>
                                   <td>${device.CINAME}</td>
                                   [#if device.USINGSTATE == 1]
                                   <td>正常</td>
                                   [#elseif device.USINGSTATE == 2]
                                   <td>废弃</td>
                                   [#else]
                                   <td>新增</td>
                                   [/#if]
                               </tr>
                           [/#list]
               </tbody>
        </table>
        [#else]
           <div class="loadpos"><span class="nodata"></span></div>
           [/#if]