<!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.QYWH]
|
[#include "/business/pages/include/gps.html" /]
|
<div class="fs_main equip_add clearfix monitor_report" >
|
<div class="ucmLeft" style="width:20%;" >
|
<!--三级树2016-01-14-->
|
<div id="cateTree"></div>
|
</div>
|
<div style="width:75%;" class="expert_base">
|
<iframe frameborder="0" width="100%" name="myiframe" id="myiframe" height="2000px" src="${base}/business/pages/xtgl/xtpz/address/addressList.html"></iframe>
|
</div>
|
</div>
|
|
<script type="text/javascript">
|
|
function queryTree(firstCate,secondCate) {
|
var $bmTree = $("#cateTree")
|
loading($bmTree);
|
$.post("${base}/business/pages/xtgl/xtpz/address/addressTree.html",{"firstCate":firstCate,"secondCate":secondCate},function(data,textStatus) {
|
loaded($bmTree);
|
$bmTree.html(data);
|
})
|
}
|
|
$(function() {
|
queryTree("","");
|
$(".navthree>a").live("click",function() {
|
$(".navthree>a").removeClass("focus");
|
$(this).addClass("focus");
|
})
|
|
})
|
|
|
|
</script>
|
[#include "/business/pages/include/footer.html" /]
|
</body>
|
</html>
|