1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| [#if devices?? && devices?size>0]
| <table class="general">
| <tbody>
| <tr class="title">
| <td>序号</td>
| <td>搜索码</td>
| <td>配置名称</td>
| <td>存放位置</td>
| </tr>
| [#list devices as device]
| <tr>
| <td>${device_index+1}</td>
| <td>${device.CI_SEARCH_CODE}</td>
| <td>${device.CI_NAME}</td>
| <td>${device.CI_POSITION}</td>
| </tr>
| [/#list]
|
| </tbody>
| </table>
| [#else]
| <div class="loadpos"><span class="nodata"></span></div>
| [/#if]
|
|