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
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>数据字典分类</title>
[#include "/business/pages/include/static.html" /]
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
 
[#assign label = GnConstants.SJZDFL]
[#include "/business/pages/include/gps.html" /]
<script type="text/javascript" src="${common_static}/static/script/jquery.newtree.js"></script>
<div class="fs_main equip_add clearfix monitor_report" >
    <div class="ucmLeft" style="width:20%;">
        <div id="cateTree"></div>
    </div>
    <div class="expert_base" style="width:75%;">
        <iframe frameborder="0" width="100%" name="myiframe" id="myiframe" height="1000px" src="${base}/business/pages/xtgl/xtpz/sjzd/sjzdflList.html"></iframe>
    </div>
</div>
 
<script type="text/javascript">
 
function queryTree(firstCate,secondCate) {
    var $cateTree = $("#cateTree");
    loading($cateTree);
    $.post("${base}/business/pages/xtgl/xtpz/sjzd/sjzdflTree.html",{"firstCate":firstCate,"secondCate":secondCate},function(data,textStatus) {
        loaded($cateTree);
        $cateTree.html(data);
    })
}
$(function() {
        queryTree("","");
           /* $("li.firstTree").live("click",function() {
            var $nextUl = $(this).children("ul.secondTree");
            if($nextUl.is(":visible")) {
                $(this).removeClass("cur");
                $nextUl.slideUp("show");
            } else {
                $(this).addClass("cur");
                $nextUl.slideDown("show");
            }
        });
        $("li.secondTreeBtn").live("click",function() {
            var $nextUl = $(this).children("ul.thirdTree");
            if($nextUl.is(":visible")) {
                $(this).removeClass("cur");
                $nextUl.slideUp("show");
            } else {
                $(this).addClass("cur");
                $nextUl.slideDown("show");
            }
            return false;
        });
        
        $("li>a").live("click",function(event) {
            event.stopPropagation();
        }); */
        
})
 
 
 
</script>
[#include "/business/pages/include/footer.html" /]
</body>
</html>