cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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}"/> 
    <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>