Examination_system/Examination_system-1/.svn/pristine/5a/5a62186367525e62b3293a050dc...

52 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-10-30 13:10:40 +08:00
<%@ 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">
.left{
display: inline-block;
width:39%;
float: left;
}
.right{
display: inline-block;
width:59%;
float: right;
padding-top:1em;
}
.names div{
display:inline-block;
border:1px solid #74a76c;
cursor:pointer;
padding:0.5em;
margin:0.5em;
}
.ui-state-focus{
display: none !important;
}
</style>
</head>
<body>
<div class="page-content">
<div class="left">
<ul id="tree" class="ztree"></ul>
</div>
<div class="right">
<span id="deptName"></span>
<div class="names">
<div title="张三">张三</div>
<input type="hidden" value="1" >
</div>
</div>
</div>
<script src="${bonuspath}/static/js/sys/dept.js?v=1"></script>
</body>
</html>