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
[#if devices?? && devices?size>0]
<table class="display_form common_list_table">
  <tr class="title">
      <td><input type="checkbox" id="selectAll"></td>
      <td>序号</td>
      <td>分类名称</td>
      <td>搜索码</td>
      <td>配置项名称</td>
      <td>${Constants.UNIT_CONSTANTS}</td>
      <td>状态</td>
  </tr>
  [#list devices as device]
  <tr>
      <td><input type="checkbox" class="selectProp" value="${device.ID}"></td>
      <td>${device_index+1}</td>
      <td>${device.lv1_name}->${device.lv2_name}->${device.lv3_name}</td>
      <td>${device.searchcode}</td>
      <td>${device.ciname}</td>
      <td>${device.sub_cus_name}</td>
      <td>${Constants.getCFG_STATE(device.state)}</td>
  </tr>
[/#list]  
</table>
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]