cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>知识地图</title>
[#include "/business/pages/include/static.html" /]
</head>
[#include "/component/newsel.html" /]
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
[#assign label = GnConstants.ZDTZSK]
[#include "/business/pages/include/gps.html" /]
 
<div class="monitoring">
    <div id="detailDiv" class="monitor_report"></div>
</div>
 
[#include "/business/pages/include/footer.html" /]
<script type="text/javascript">
    $(function(){
        $("#detailDiv").load("${base}/business/pages/knowledge/knowledgeMain/knowcatecompanyTree.html");
    })
    function toWk(categoryId){
        window.location.href="${base}/business/pages/knowledge/knowledgeMain/knowledgeList.html?category_id="+categoryId;
    }
 
</script>
</body>
</html>