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
70
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<link href="${common_static}/static/knowledge/css/Knowledge.css" rel="stylesheet" type="text/css"/>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>配置分类地图</title>
[#include "/business/pages/include/static.html" /]
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
[#assign label = GnConstants.SBFLDTZSK]
[#include "/business/pages/include/gps.html" /]
 
<div class="knowledge-box" style="margin-top:10px;">
[#if library_tree?? && library_tree?size>0]
[#list library_tree as trees]
<table class="knowledge-table">
<th>
<span>[ ${trees.NAME} ]</span>
</th>
<td>
<div class="knowledge-right">
[#if trees.ejTree?? && trees.ejTree?size>0]
[#list trees.ejTree as ejT]
<div class="knowledge-right-box">
<div class="subheadings">${ejT.NAME}<span>&gt;</span></div>
<div class="three-title">
[#if ejT.sjTree?? && ejT.sjTree?size>0]
[#list ejT.sjTree as sjT]
<a href="javascript:toWk('${sjT.ID}','${RequestParameters.num}');">${sjT.NAME}(${sjT.NUM})</a>
[/#list]
[/#if]
</div>
</div>
[/#list]
[#else]
<div class="knowledge-right-box">
<div class="three-title">
</div>
</div>
[/#if]
</div>
</td>
</table>
[/#list]
[/#if]
</div>
 
[#include "/business/pages/include/footer.html" /]
<script type="text/javascript">
$(function(){
    //去除最后一个a的右边框
    $("div.three-title").each(function(){
        $(this).find("a").last().css("border-right","none");
    });
});
    function toWk(categoryId){
        window.open("${base}/business/pages/knowledge/knowledgeMain/knowledgeCiList.html?category_id="+categoryId);
    }
    
    function toSearch(){
    var key = $("#ktcsCon").val();
    if(key=='') return;
    window.location.href="${base}/business/pages/knowledge/knowledgeMain/knowledgeSearchList.html?key="+key;
 }
 
</script>
</body>
</html>