73 lines
2.6 KiB
Plaintext
73 lines
2.6 KiB
Plaintext
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||
|
|
pageEncoding="UTF-8"%>
|
||
|
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>机构管理</title>
|
||
|
|
<style type="text/css">
|
||
|
|
.ztree {overflow:auto;margin:0;_margin-top:10px;padding:10px 0 0 10px;}
|
||
|
|
</style>
|
||
|
|
<link href="${ctxStatic}/jquery-ztree/3.5.12/css/zTreeStyle/zTreeStyle.min.css" rel="stylesheet" type="text/css"/>
|
||
|
|
<script src="${ctxStatic}/jquery-ztree/3.5.12/js/jquery.ztree.all-3.5.min.js" type="text/javascript"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<sys:message content="${message}"/>
|
||
|
|
<div id="content" class="row-fluid">
|
||
|
|
<div id="left" class="accordion-group">
|
||
|
|
<div class="accordion-heading">
|
||
|
|
<a class="accordion-toggle">信访目的<i class="icon-refresh pull-right" onclick="refreshTree();"></i></a>
|
||
|
|
</div>
|
||
|
|
<div id="ztree" class="ztree"></div>
|
||
|
|
</div>
|
||
|
|
<div id="openClose" class="close"> </div>
|
||
|
|
<div id="right">
|
||
|
|
<iframe id="officeContent" src="${ctx}/sys/purpose/list?id=&parentIds=" frameborder="no" width="100%" height="91%"></iframe>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
$(document).ready(function(){
|
||
|
|
refreshTree();
|
||
|
|
});
|
||
|
|
|
||
|
|
var setting = {data:{simpleData:{enable:true,idKey:"id",pIdKey:"pId",rootPId:'0'}},
|
||
|
|
callback:{onClick:function(event, treeId, treeNode){
|
||
|
|
var id = treeNode.pId ? treeNode.id : 1;
|
||
|
|
$('#officeContent').attr("src","${ctx}/sys/purpose/list?id="+id+"&parentIds="+treeNode.pIds);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
function refreshTree(){
|
||
|
|
$.getJSON("${ctx}/letter/reg/purposeTreeData",function(data){
|
||
|
|
var tree = $.fn.zTree.init($("#ztree"), setting, data);
|
||
|
|
var nodes = tree.getNodesByParam("level", 0);
|
||
|
|
for(var i=0; i<nodes.length; i++) {
|
||
|
|
tree.expandNode(nodes[i], true, false, false);
|
||
|
|
}
|
||
|
|
var secondNodes = tree.getNodesByParam("level", 1);
|
||
|
|
$("#"+secondNodes[0].tId+"_a").click();
|
||
|
|
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
var leftWidth = 180; // 左侧窗口大小
|
||
|
|
var htmlObj = $("html"), mainObj = $("#main");
|
||
|
|
var frameObj = $("#left, #openClose, #right, #right iframe");
|
||
|
|
function wSize(){
|
||
|
|
var strs = getWindowSize().toString().split(",");
|
||
|
|
htmlObj.css({"overflow-x":"hidden", "overflow-y":"hidden"});
|
||
|
|
mainObj.css("width","auto");
|
||
|
|
frameObj.height(strs[0] - 5);
|
||
|
|
var leftWidth = ($("#left").width() < 0 ? 0 : $("#left").width());
|
||
|
|
$("#right").width($("#content").width()- leftWidth - $("#openClose").width() -5);
|
||
|
|
$(".ztree").width(leftWidth - 10).height(frameObj.height() - 46);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<script src="${ctxStatic}/common/wsize.min.js" type="text/javascript"></script>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</html>
|