|
<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>
|
|
|
|
|
|