cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
            <div class="ntt_title"><span></span><a href="javascript:void(0);">配置分类</a></div>
            <div class="three_tree">
            [#if cates?? && cates?size>0]
            <ul>
                [#list cates as cate]
                    <li class="firstTree"><span></span><a href="javascript:clearMyiframe();">${cate.NAME}</a>
                    [#if cate.ejTree?? && cate.ejTree?size>0]
                        <ul class="secondTree" style="display:none;">
                            [#list cate.ejTree as ej]
                                    [#assign type1=RequestParameters.type]
                                    <li class="secondTreeBtn"><span></span><a [#if type1==1]href="${base}/business/pages/wbx/rcxjitem/rcxjxList.html?cateId=${ej.ID}"[#elseif type1==2]href="${base}/business/pages/wbx/lxwhitem/lxwhxList.html?cateId=${ej.ID}"[#elseif type1==3]href="${base}/business/pages/wbx/ydxjitem/jkjcxList.html?cateId=${ej.ID}"[/#if] target="myiframe">${ej.NAME}</a>
                                    [#if ej.sjTree?? && ej.sjTree?size>0]
                                        <ul class="thirdTree" style="display:none;">
                                            [#list ej.sjTree as sj]
                                            [#assign type=RequestParameters.type]
                                            <li><span class="last"></span><a [#if type==1]href="${base}/business/pages/wbx/rcxjitem/rcxjxList.html?cateId=${sj.ID}"[#elseif type==2]href="${base}/business/pages/wbx/lxwhitem/lxwhxList.html?cateId=${sj.ID}"[#elseif type==3]href="${base}/business/pages/wbx/ydxjitem/jkjcxList.html?cateId=${sj.ID}"[/#if] target="myiframe">${sj.NAME}</a></li>
                                            [/#list]
                                        </ul>
                                    [/#if]
                                </li>
                            [/#list]
                        </ul>
                    [/#if]
                    </li>
                [/#list]
                <ul>
            [#else]
            <div class="loadpos"><span class="nodata"></span></div>
            [/#if]
         </div>