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
37
38
39
40
41
42
43
<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 class="linkTr">
    <td>
        <input class="pos deivceId" type="checkbox" value="${device.ID}" />
        ${device_index+1}
    </td>
    <td class="deviceName">
        ${device.NAME}
    </td>
    <td class="searchCode">
        ${device.SEACHCODE}
    </td>
    <td class="ciName">
        ${device.CINAME}
    </td>
    <td class="position">
        ${device.POSITION}
    </td>
    <td class="ciAdmin">
        ${device.CIADMIN}
    </td>
</tr>
[/#list] [/#if]