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
 
           <table class="display_form common_list_table">
                       <tr class="title">
                           <td>序号</td>
                           <td>分类名称</td>
                           <td>搜索码</td>
                           <td>配置名称</td>
                           <td>状态</td>
                           <td>操作</td>
                       </tr>
                       [#if devices?? && devices?size>0]
                           [#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]
                                   <td class="list_btnmore_wrap">
                                       <a class="blue_txt " href="javascript:deldslci('${device.ID}')"><span>删除</span></a>
                                   </td>
                               </tr>
                           [/#list]
                       [#else]
                       <tr>
                     <td align="center" colspan="6">暂无信息</td>
                    </tr>
                   [/#if]
        </table>