33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<!DOCTYPE html >
|
|
<html lang="en">
|
|
<head>
|
|
<%@include file="../baseset.jsp" %>
|
|
<%@include file="../systemset.jsp" %>
|
|
<link rel="stylesheet" href="${bonuspath}/static/plugins/zTree/3.5/zTreeStyle.css" />
|
|
<script src="${bonuspath}/static/plugins/zTree/3.5/jquery.ztree.all.min.js"></script>
|
|
<style type="text/css">
|
|
.orgTree {
|
|
width:100% !important;
|
|
height:500px !important;
|
|
background: none repeat scroll 0 0 #fff !important;
|
|
border:1px solid #ddd !important
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="page-content">
|
|
<div class="widget-main">
|
|
<input type="text" id="keyWord" placeholder="这里输入关键词" >
|
|
<button id='searchBtn' class="btn btn-warning btn-sm" type="button" onclick="reloadTree()">
|
|
<i class="icon-search bigger-120 icon-only"></i>
|
|
</button>
|
|
</div>
|
|
<div class="row-fluid">
|
|
<ul id="projectTree" class="ztree orgTree"></ul>
|
|
</div>
|
|
</div>
|
|
<script src="${bonuspath}/static/js/bm/projectTree.js"></script>
|
|
</body>
|
|
</html> |