<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>DSL管理</title>
|
[#include "/business/pages/include/static.html" /]
|
|
</head>
|
|
<body class="fullscreen">
|
[#include "/business/pages/include/header.html" /]
|
[#assign label = GnConstants.DSLCATEGL]
|
[#include "/business/pages/include/gps.html" /]
|
|
<div class="fs_main equip_add clearfix monitor_report" >
|
<div class="ucmLeft " id="equipAddLeft" >
|
<!--三级树2016-01-14-->
|
<div id="cateTree"></div>
|
</div>
|
<div class="expert_base" id="equipAddRight">
|
<iframe frameborder="0" width="100%" name="myiframe" id="myiframe" height="2000px" src="${base}/business/pages/dslcate/dslCateList.html"></iframe>
|
</div>
|
</div>
|
|
<script type="text/javascript">
|
|
function queryTree(firstCate,secondCate) {
|
var $cateTree = $("#cateTree");
|
loading($cateTree);
|
$.post("${base}/business/pages/dslcate/dslCateTree.html",{"firstCate":firstCate,"secondCate":secondCate},function(data,textStatus) {
|
loaded($cateTree);
|
$cateTree.html(data);
|
})
|
}
|
|
$(function() {
|
queryTree("","");
|
|
})
|
|
|
|
</script>
|
[#include "/business/pages/include/footer.html" /]
|
</body>
|
</html>
|