<!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 style="min-width:1200px">
|
[#include "/business/pages/include/header.html" /]
|
[#assign label = GnConstants.ZSFLDTZSK]
|
[#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.TITLE} ]</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.TITLE}<span>></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.TITLE}(${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/knowledgeList.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>
|