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
<div class="ntt_title"><span></span><a href="${base}/business/pages/xtgl/xtpz/sjzd/sjzdflList.html" target="myiframe">数据字典分类</a></div>                
<div class="three_tree">
  [#if cates?? && cates?size>0]
    <ul>
     [#list cates 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/xtgl/xtpz/sjzd/sjzdflList.html?pId=${cate.ID}&type=${cate.TYPE}" target="myiframe">${cate.CATEGORYNAME}</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  class=" cur" ><span class="last"></span><a style="border-bottom:0px;"  href="javascript:void(0)" target="myiframe">${ej.CATEGORYNAME}</a>
                </li>
               [/#list]
            </ul>
           [/#if]
        </li>
        [/#list]
    </ul>
    [/#if]
</div>