wscp-miping/qian/admin/index.html
2024-06-07 16:23:01 +08:00

169 lines
5.3 KiB
HTML

<!DOCTYPE html>
<html lang="en" xmlns:region="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<!-- <title class="systemName">东南大学综合考评管理系统</title>-->
<title class="systemName"></title>
<!--01.css1-easyui -->
<link href="../plugs/easyui/themes/metro/easyui.css" rel="stylesheet"/>
<link rel="stylesheet" href="../plugs/easyui/themes/icon.css">
<link rel="stylesheet" href="../css/comm/index.css">
<!--02.js-jquery-->
<script src="../plugs/jquery/jquery-1.12.3.min.js"></script>
<script src="../plugs/json2.min.js"></script>
<!--03.js-easyui -->
<script type="text/javascript" src="../plugs/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript" src="../plugs/easyui/locale/easyui-lang-zh_CN.js"></script>
<script src="../plugs/layer/layer.js"></script>
<!--04.公共的js-->
<script src="../plugs/js-md5/js/md5.min.js"></script>
<script src="../js/comm/commHelper.js"></script>
<script src="../js/comm/extentFunction.js"></script>
<!--05.当前页面的js文件-->
<script src="../js/comm/index.js"></script>
<style>
/*滚动条样式更改*/
::-webkit-scrollbar {
width: 0px;
height: 0px;
background-color: #2e68ea;
}
/*定义滚动条轨道
内阴影+圆角*/
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
background-color: #2e68ea;
}
/*定义滑块
内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: #2e68ea;
}
.right-click-div {
background-color: #fff;
box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.12);
}
.right-click-div .menu-line {
display: none;
}
.right-click-div .menu-text {
line-height: 28px !important;
height: 28px !important;
padding: 0 10px;
}
.right-click-div .menu-item {
line-height: 28px !important;
height: 28px !important;
padding: 0 10px;
}
.right-click-div > div:hover {
background-color: #12a1e7;
color: #fff;
}
</style>
</head>
<body class="easyui-layout layout" id="index_body">
<div class="header_top_dl" id="header_top_dl">
<div><a href="javascript:void(0)" class="header_top_dl_a iconfont"
onclick="openModeSelfInfo()">&#xe639;&nbsp;修改密码</a></div>
<div><a href="javascript:void(0)" class="header_top_dl_a iconfont"
onclick="Logout()">&#xe63c;&nbsp;退出</a></div>
</div>
<div data-options="region:'west',title:'',border:false" style="width: 200px; overflow: hidden; height: 930px;"
id="west">
<div class="head_class" id="head_class">
<div class="leftnav" id="leftnav">
</div>
</div>
<div class="head_class1" id="head_class1">
<div class="leftnav" id="leftnav1" style="position: absolute;left: 0px;top: 0;z-index: 1000;width: 100%">
</div>
</div>
</div>
<div data-options=" region:'center',title:'',border:false" style="height: 930px;left: 200px; top: 0px; width: 100%"
id="center">
<div class="head_1" id="head_1">
<div style="float: left;margin-left: 10px;margin-top: 18px"><a href="javaScript:void (0)" id="foldUp" onclick="scaling()"><img
id="img-scaling" src="../images/main/dingbu_01_16x16.png"
height="16" width="16"/></a></div>
<div class="head_title systemName">
</div>
<div class="north_right_text">
<ul class="content_header_top">
<li style="z-index: 999">
<div class="header_top_div" id="header_top_div">
<span id="welcome"></span>
<img class="top_images1" id="top_images1" src="../images/header_04_12x6.png" alt="">
</div>
</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<div id="home-tabs-menu" class="easyui-menu right-click-div">
<div data-options="name:1">关闭当前标签页</div>
<div data-options="name:2">关闭其他标签页</div>
<div data-options="name:3">关闭全部标签页</div>
</div>
<!--右边tab内容开始-->
<div id="tabAll"></div>
<!--右边tab内容结束-->
<div id="divOpDialog"></div>
<div id="divOpDialog2"></div>
<div id="divOpDialog3"></div>
</div>
<div class="h2_hover" id="h2_hover" style="">
</div>
<script>
function e(obj) {
return document.getElementById(obj)
}
e('header_top_div').onclick = function (event) {
e('header_top_dl').style.display = 'block';
stopBubble(event);
document.onclick = function () {
e('header_top_dl').style.display = 'none';
document.onclick = null;
}
}
e('header_top_dl').onclick = function (event) {
stopBubble(event);
}
function stopBubble(e) {
if (e && e.stopPropagation) {
e.stopPropagation();
} else {
window.event.cancelBubble = true;
}
}
</script>
</body>
</html>