[#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]
|