cy
2022-06-22 6e06bba1c89f8077e29d0fbf0ce12f89f027d8d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[#if devices?? && devices?size>0]
    [#list devices as device]
        <section class="worklist clearfix" onclick="javascript:window.location.href='${base}/ewyw/ewconfig/econfigInfo.html?cate=${device.LV3_ID}&id=${device.ID}'">
        <!--<section class="worklist clearfix">-->
            <h2>
                ${device.SEARCHCODE}
            </h2>
            <div class="worklistcon clearfix">
                <span class="relaicon"></span>
                <p>配置名称:${device.CINAME}</p>
                <p>分类名称:${device.LV1_NAME}->${device.LV2_NAME}->${device.LV3_NAME}</p>
                <p>存放位置:<em>${device.POSITION}</em></p>
            </div>
        </section>
    [/#list]
[#else]
    <div class="nodate"><span>暂无关联配置</span></div>
[/#if]