|
<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>
|
|