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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>用户管理</title>
[#include "/business/pages/include/static.html" /]
<script type="text/javascript" src="${common_static}/static/script/jquery.newtree.js"></script>
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
 
[#assign label = GnConstants.YHGL]
[#include "/business/pages/include/gps.html" /]
 
<div class="fs_main equip_add clearfix monitor_report" >
    <div class="ucmLeft "  >
        <!--部门树2016-01-14-->
        <div id="cateTree">
            <div class="ntt_title"><span></span><a href="${base}/business/pages/xtgl/yhgl/yhList.html" target="myiframe">部门树</a></div>
            <div class="three_tree">
              [#if bms?? && bms?size>0]
                <ul>
                 [#list bms as cate]
                    <li  class="firstTree"><span></span><a href="${base}/business/pages/xtgl/yhgl/yhList.html?id=${cate.ID}&name=${cate.JGMC}" target="myiframe">${cate.JGMC}</a>
                    [#if cate.ejTree?? && cate.ejTree?size>0]
                        <ul class="secondTree"  style="display:none;">
                         [#list cate.ejTree as ej]
                            <li  class="secondTreeBtn " ><span></span><a href="${base}/business/pages/xtgl/yhgl/yhList.html?id=${ej.ID}&name=${cate.JGMC}" target="myiframe">${ej.JGMC}</a>
                             [#if ej.sjTree?? && ej.sjTree?size>0]
                                <ul class="thirdTree"  style="display:none;" >
                                  [#list ej.sjTree as sj]
                                    <li class="cur thirdTree" ><span  class="last" ></span><a  href="${base}/business/pages/xtgl/yhgl/yhList.html?id=${sj.ID}&name=${cate.JGMC}" target="myiframe" >${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>
       </div>
    </div>
    <div class="expert_base" >
        <iframe frameborder="0" width="100%" name="myiframe" id="myiframe" height="800px" src="${base}/business/pages/xtgl/yhgl/yhList.html"></iframe>
    </div>
</div>
 
[#include "/business/pages/include/footer.html" /]
</body>
</html>