cy
2022-06-22 6e06bba1c89f8077e29d0fbf0ce12f89f027d8d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[#if devices?? && devices?size > 0]
[#list devices as device]
<div class="item">
    <input type="hidden" class="deivceId" value="${device.ID}&${device.SEARCHCODE}&${device.CINAME}&${device.POSITION}&${device.LV1_NAME}->${device.LV2_NAME}->${device.LV3_NAME}"/> 
    <span class="img"></span>
    <span class="text">
        <span class="one">搜索码:<em>${device.SEARCHCODE}</em></span> 
        <span class="one"> 配置名称:<em>${device.CINAME}</em></span>
     </span>
</div>
[/#list]
[/#if]
<script type="text/javascript">
$(function() { 
$(".item").click(function() { 
$(this).toggleClass("item-foucs"); //Remove any "active" class 
}); 
});
</script>