|
|
<!DOCTYPE html>
|
|
|
<html lang="en">
|
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
|
<title>异动申请列表</title>
|
|
|
<meta name="renderer" content="webkit">
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
<meta name="viewport"
|
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
|
<link rel="stylesheet" href="../../static/css/font.css">
|
|
|
<link rel="stylesheet" href="../../static/css/weadmin.css">
|
|
|
<link rel="stylesheet" href="../../lib/ztree/zTreeStyle.css">
|
|
|
<script src="../../lib/jquery-3.6.0.min.js"></script>
|
|
|
<script src="../../lib/ztree/jquery.ztree.core-3.5.min.js"></script>
|
|
|
<!-- 让IE8/9支持媒体查询,从而兼容栅格 -->
|
|
|
<!--[if lt IE 9]>
|
|
|
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
|
|
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
|
|
<![endif]-->
|
|
|
<style>
|
|
|
ul {
|
|
|
margin-top: 40px;
|
|
|
}
|
|
|
ul li i {
|
|
|
|
|
|
width: 100px;
|
|
|
height: 100px;
|
|
|
display: block;
|
|
|
line-height: 100px;
|
|
|
text-align: center;
|
|
|
color: #fff;
|
|
|
font-size: 70px!important;
|
|
|
margin-bottom: 10px;
|
|
|
border-radius: 50%;
|
|
|
}
|
|
|
ul li {
|
|
|
float: left;
|
|
|
color: #666;
|
|
|
font-size: 15px;
|
|
|
text-align: center;
|
|
|
margin-right:50px;
|
|
|
position: relative;
|
|
|
}
|
|
|
|
|
|
ul li:nth-child(1) i {
|
|
|
background-color: #FF5722;
|
|
|
}
|
|
|
ul li:nth-child(2) i {
|
|
|
background-color: #1E9FFF;
|
|
|
}
|
|
|
ul li:nth-child(3) i {
|
|
|
background-color: #02CF97;
|
|
|
}
|
|
|
ul li:nth-child(4) i {
|
|
|
background-color: #8682F3;
|
|
|
}
|
|
|
ul li span {
|
|
|
position: absolute;
|
|
|
top:0;
|
|
|
right: 6px;
|
|
|
background-color: red;
|
|
|
color: #fff;
|
|
|
border-radius: 50%;
|
|
|
width: 20px;
|
|
|
height: 20px;
|
|
|
text-align: center;
|
|
|
line-height: 20px;
|
|
|
border: 1px solid #fff;
|
|
|
display: none;
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
|
|
|
<div class="weadmin-body">
|
|
|
<form class="layui-form">
|
|
|
<ul id="nav">
|
|
|
<li>
|
|
|
<a href="javascript:void(0);">
|
|
|
<i class="layui-icon"></i>
|
|
|
教师调转申请
|
|
|
<span id="teaApply"></span>
|
|
|
</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:void(0);">
|
|
|
<i class="layui-icon"></i>
|
|
|
教师异动审核
|
|
|
<span id="teaAcho"></span>
|
|
|
</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:void(0);">
|
|
|
<i class="layui-icon"></i>
|
|
|
学生调转申请
|
|
|
<span id="stuApply"></span>
|
|
|
</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:void(0);">
|
|
|
<i class="layui-icon"></i>
|
|
|
学生异动审核
|
|
|
<span id="stuAcho"></span>
|
|
|
</a>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</form>
|
|
|
</div>
|
|
|
|
|
|
<script src="../../lib/layui/layui.js"></script>
|
|
|
<script>
|
|
|
|
|
|
|
|
|
layui.extend({
|
|
|
admin: '{/}../../static/js/admin'
|
|
|
});
|
|
|
layui.use(['form', 'jquery', 'admin', 'layer', 'table', 'element'], function () {
|
|
|
var form = layui.form,
|
|
|
$ = layui.jquery,
|
|
|
admin = layui.admin,
|
|
|
layer = layui.layer,
|
|
|
table = layui.table,
|
|
|
element = layui.element;
|
|
|
var info=getcookie();
|
|
|
if(info.identity_id==4){
|
|
|
$.ajax({
|
|
|
type:"GET",
|
|
|
dataType:"json",
|
|
|
url:"/FengHuang/teacherYd/getNewTeacherTransferApplyCount?bureau_id="+info.bureau_id,
|
|
|
success:function (data) {
|
|
|
if(data.result.count>0){
|
|
|
$("#teaApply").show().text(data.result.count);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
})
|
|
|
$.ajax({
|
|
|
type:"GET",
|
|
|
dataType:"json",
|
|
|
url:"/FengHuang/teacherYd/getNewTeacherTransferEchoCount?bureau_id="+info.bureau_id,
|
|
|
success:function (data) {
|
|
|
if(data.result.count>0){
|
|
|
$("#teaEcho").show().text(data.result.count);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
// 教师调转申请
|
|
|
$("ul li:eq(0)").click(function () {
|
|
|
WeAdminShow('教师调转申请', './teaApplyList.html',1000, 600);
|
|
|
})
|
|
|
// 教师调转审核
|
|
|
$("ul li:eq(1)").click(function () {
|
|
|
WeAdminShow('教师异动审核', './teaEchoList.html',1000, 720);
|
|
|
})
|
|
|
// 学生调转申请
|
|
|
$("ul li:eq(2)").click(function () {
|
|
|
WeAdminShow('学生调转申请', './teaApplyList.html',800, 600);
|
|
|
})
|
|
|
// 学生调转回执
|
|
|
$("ul li:eq(3)").click(function () {
|
|
|
WeAdminShow('学生异动审核', './teaApplyList.html',1000, 700);
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
</html> |