118 lines
4.1 KiB
HTML
118 lines
4.1 KiB
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<base href="/signup/">
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="renderer" content="webkit">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||
|
<link rel="stylesheet" href="assets/fonts/font-awesome/css/font-awesome.css"/>
|
||
|
<link rel="stylesheet" href="assets/layuiadmin/layui/css/layui.css" media="all">
|
||
|
<link rel="stylesheet" href="assets/layuiadmin/style/admin.css" media="all">
|
||
|
<link rel="stylesheet" href="assets/js/vendor/zTree3/css/metroStyle/metroStyle.css"/>
|
||
|
<link rel="stylesheet" href="assets/layuiadmin/style/common.css" media="all">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="layui-fluid layui-anim layui-anim-fadein">
|
||
|
<div class="layui-row">
|
||
|
<div class="layui-row layui-col-space10">
|
||
|
<div class="layui-col-md2 layui-col-sm2 layui-col-xs2">
|
||
|
<div class="layui-card">
|
||
|
<div class="layui-card-body left-tree-wrap">
|
||
|
<div id="leftTreeWrap">
|
||
|
<ul id="leftTree" class="ztree"></ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="layui-col-md10 layui-col-sm10 layui-col-xs10">
|
||
|
<div class="layui-card">
|
||
|
<div id="listContentWrap" class="layui-card-body">
|
||
|
<iframe id="listContent" frameborder="0" class="layadmin-iframe"></iframe>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="assets/layuiadmin/layui/layui.js"></script>
|
||
|
<script src="assets/js/vendor/viewer/viewer.min.js"></script>
|
||
|
<script>
|
||
|
var common;
|
||
|
layui.config({
|
||
|
base: 'assets/layuiadmin/'
|
||
|
}).extend({
|
||
|
index: 'lib/index'
|
||
|
}).use(['index', 'ztree', 'common'], function() {
|
||
|
common = layui.common;
|
||
|
var $ = layui.$;
|
||
|
var $win = $(window);
|
||
|
var resizeTimeout = null;
|
||
|
var parentId = '';
|
||
|
var parentName = '';
|
||
|
var orgId = '';
|
||
|
|
||
|
function initData(){
|
||
|
initSize();
|
||
|
initThree();
|
||
|
$('#listContent').attr('src', top.restAjax.path('route/examcheck/list-send-dept-iframe.html?orgId={arg}', ['']));
|
||
|
}
|
||
|
initData();
|
||
|
|
||
|
// 初始化大小
|
||
|
function initSize() {
|
||
|
$('#leftTreeWrap').css({
|
||
|
height: $win.height() - 40,
|
||
|
overflow: 'auto'
|
||
|
});
|
||
|
$('#listContentWrap').css({
|
||
|
height: $win.height() - 60,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function initThree() {
|
||
|
var setting = {
|
||
|
async: {
|
||
|
enable: true,
|
||
|
type: 'get',
|
||
|
url: top.restAjax.path('api/classplan/list-tree-org', []),
|
||
|
},
|
||
|
data: {
|
||
|
simpleData: {
|
||
|
enable: true,
|
||
|
idKey: "id",
|
||
|
pIdKey: "pId",
|
||
|
rootPId: 0
|
||
|
}
|
||
|
},
|
||
|
callback: {
|
||
|
onClick: function (event, treeId, treeNode) {
|
||
|
parentId = treeNode.id;
|
||
|
parentName = treeNode.name;
|
||
|
orgId = treeNode.id;
|
||
|
$('#treeTitle').text(parentName);
|
||
|
initIFrame();
|
||
|
return;
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
var zTree = $.fn.zTree.init($("#leftTree"), setting);
|
||
|
}
|
||
|
|
||
|
// 初始化IFrame
|
||
|
function initIFrame() {
|
||
|
$('#listContent').attr('src', top.restAjax.path('route/examcheck/list-send-dept-iframe.html?orgId={arg}',
|
||
|
[orgId]));
|
||
|
}
|
||
|
|
||
|
// 事件 - 页面变化
|
||
|
$win.on('resize', function() {
|
||
|
clearTimeout(resizeTimeout);
|
||
|
resizeTimeout = setTimeout(function() {
|
||
|
initSize();
|
||
|
}, 500);
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|