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
31
32
                                       
<div class="ntt_title"><span></span><a href="${base}/business/pages/knowledge/knowledgeMain/knowcateList.html" target="myiframe">知识分类</a></div>               
<div class="three_tree">
  [#if categorys?? && categorys?size>0]
    <ul>
     [#list categorys as cate]
        <li [#if firstCate?? && firstCate != cate.ID] class="firstTree" [#else] class="cur firstTree"[/#if]><span></span><a style="border-bottom:0px;"  href="${base}/business/pages/knowledge/knowledgeMain/knowcateList.html?pId=${cate.ID}&type=${cate.LEVEL}&state=${cate.STATE}" target="myiframe">${cate.TITLE}</a>
        [#if cate.ejTree?? && cate.ejTree?size>0]
            <ul class="secondTree" [#if firstCate?? && firstCate != cate.ID] style="display:none;"[/#if]>
             [#list cate.ejTree as ej]
                <li [#if secondCate?? && secondCate != ej.ID] class="secondTreeBtn "[#else] class="secondTreeBtn cur"[/#if] ><span></span><a style="border-bottom:0px;"  href="${base}/business/pages/knowledge/knowledgeMain/knowcateList.html?pId=${ej.ID}&type=${ej.LEVEL}&state=${ej.STATE}" target="myiframe">${ej.TITLE}</a>
                 [#if ej.sjTree?? && ej.sjTree?size>0]
                    <ul class="thirdTree" [#if secondCate?? && secondCate != ej.ID] style="display:none;" [/#if]>
                      [#list ej.sjTree as sj]
                        <li class="cur thirdTree" ><span  class="last" ></span><a  >${sj.TITLE}</a></li>
                       [/#list]
                    </ul>
                    [/#if]
                </li>
               [/#list]
            </ul>
           [/#if]
        </li>
        [/#list]
    </ul>
    [/#if]
</div>