sjy-ecos/views/ei.html

33 lines
789 B
HTML

<%- include('comm/header.html') %>
<div class="container">
<div class="row">
<div class="col-md-3 col-xs-12">
<div id="tree"></div>
</div>
<div class="col-md-9 col-xs-12">
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
var $tree = $('#tree').treeview({
levels: 666,
data: json_tree_ei,
showBorder: false,
enableLinks: true
});
$('.navbar-nav li a').each(function () {
if ($(this).attr('href') == '/ei') {
$(this).parent().addClass('active');
}
});
/* $('.treeview ul.list-group li a').each(function () {
if ($($(this))[0].href == String(window.location)) {
$(this).parent().css("color", "#fff");
$(this).parent().css("background-color", "#428bca");
}
})*/
});
</script>
<%- include('comm/footer.html') %>