You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.6 KiB
119 lines
4.6 KiB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title></title>
|
|
<link href="./static/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
|
|
<link href="./static/css/style.css" rel="stylesheet" type="text/css"/>
|
|
<link rel="stylesheet" href="./static/css/jquery.dad.css">
|
|
</head>
|
|
|
|
<body ondragstart="return false;">
|
|
|
|
<nav class="navbar navbar-default navbar-static-top">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button aria-controls="navbar" aria-expanded="false" data-target="#navbar" data-toggle="collapse"
|
|
class="navbar-toggle collapsed" type="button"><span class="sr-only">Toggle navigation</span> <span
|
|
class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span></button>
|
|
<a href="#" class="navbar-brand logo"><img src="/dsssoserver/images/hebyesz.png" width="50" height="50"
|
|
alt=""/><span id="system_name"></span></a></div>
|
|
<div class="navbar-collapse collapse" id="navbar">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li class="dropdown"><p class="dropdown-toggle"
|
|
data-toggle="dropdown">您好,<span id="spanPersonName"></span><img
|
|
src="./static/images/arrow.png" width="11" height="6" alt=""/></p>
|
|
<ul class="dropdown-menu">
|
|
<li><a href="javascript:void(0);" onclick="personalCenter();">个人中心</a></li>
|
|
<li><a class="loginout" href="/baseService/logout">退出</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<!--/.nav-collapse -->
|
|
</div>
|
|
</nav>
|
|
<div class="banner"><div class="container"><p id="banner_text"></p></div></div>
|
|
<div class="bg-white">
|
|
<div class="container pb-50">
|
|
<div class="row">
|
|
<div class="title01">
|
|
<h1><span><b>教学过程及质量评价系统</b></span></h1>
|
|
</div>
|
|
<ul class="ptlist01 clearfix" id="ulLis"></ul>
|
|
<li appid=1>
|
|
<a href="/baseService/html/pages/evaluate/IsRunningPlanList.html" target="_blank" >
|
|
<p>
|
|
<img src="./static/images/tel.png"} width="50" height="50" alt=""/>
|
|
</p>
|
|
<span>教学评教</span>
|
|
</a>
|
|
</li>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--/.container-->
|
|
<footer>
|
|
<div class="copy" id="copyright">
|
|
</div>
|
|
</footer>
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="./static/js/jquery-1.12.4.min.js"></script>
|
|
<script src="./static/js/bootstrap.min.js"></script>
|
|
<script src="./static/js/main.js"></script>
|
|
<script src="lib/layui/layui.js"></script>
|
|
<script src="./lib/jquery.dad.min.js"></script>
|
|
</body>
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
$.ajax({
|
|
type: "GET",
|
|
dataType: "json",
|
|
url: "/baseService/loginPerson/getLoginPersonInfo",
|
|
async: false,
|
|
success: function (result) {
|
|
if (result.success) {
|
|
$("#spanPersonName").html(result.person_name);
|
|
} else {
|
|
alert(result.message);
|
|
}
|
|
}
|
|
});
|
|
|
|
$.ajax({
|
|
type: "GET",
|
|
dataType: "json",
|
|
url: "/baseService/global/getGlobalByCodes",
|
|
data : {
|
|
"global_codes" : "title,copy_right"
|
|
},
|
|
async: false,
|
|
success: function (result) {
|
|
$("#system_name").html(result.data[0].global_value);
|
|
$("#copyright").html(result.data[1].global_value);
|
|
$("#banner_text").html(result.data[0].global_value);
|
|
$('title').html(result.data[0].global_value);
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
layui.extend({
|
|
admin: '{/}./static/js/admin'
|
|
});
|
|
layui.use(['jquery','admin','laytpl'], function() {
|
|
var $ = layui.jquery,
|
|
laytpl = layui.laytpl,
|
|
admin = layui.admin;
|
|
var info = getcookie();
|
|
|
|
window.personalCenter = function () {
|
|
WeAdminShow('个人中心', './pages/personalCenter/personalcenter.html', 800, 500);
|
|
}
|
|
});
|
|
</script>
|
|
</html>
|