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
 <div class="ntt_title"><span></span><a href="${base}/business/pages/xtgl/bmgl/bmList.html" target="myiframe">部门管理</a></div>
  <div class="three_tree">
  [#if bms?? && bms?size>0]
    <ul>
     [#list bms as cate]
        <li [#if firstCate?? && firstCate != cate.ID] class="firstTree"[#else] class="cur firstTree"[/#if]><span></span><a href="${base}/business/pages/xtgl/bmgl/bmList.html?pId=${cate.ID}&type=${cate.CENGJ}" target="myiframe">${cate.JGMC}</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 href="${base}/business/pages/xtgl/bmgl/bmList.html?pId=${ej.ID}&type=${ej.CENGJ}" target="myiframe">${ej.JGMC}</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.JGMC}</a></li>
                       [/#list]
                    </ul>
                    [/#if]
                </li>
               [/#list]
            </ul>
           [/#if]
        </li>
        [/#list]
    </ul>
    [#else]
       <div class="loadpos"><span class="nodata"></span></div>
    [/#if]
</div>