|
|
<!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/layui/css/layui.css">
|
|
|
<!-- 让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 li {
|
|
|
overflow: hidden;
|
|
|
clear: both;
|
|
|
padding: 12px 0 12px 10px;
|
|
|
border: 1px solid #e2e2e2;
|
|
|
border-bottom: none;
|
|
|
color: #666;
|
|
|
}
|
|
|
ul li:last-child{
|
|
|
border-bottom: 1px solid #e2e2e2;
|
|
|
}
|
|
|
ul li >div {
|
|
|
float: left;
|
|
|
}
|
|
|
ul li>div:nth-child(1) {
|
|
|
width: 15%;
|
|
|
}
|
|
|
ul li>div:nth-child(2) {
|
|
|
width: 85%;
|
|
|
}
|
|
|
|
|
|
.layui-btn-sm {
|
|
|
height: 26px;
|
|
|
line-height: 26px;
|
|
|
width: 80px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
|
|
|
<div class="weadmin-body">
|
|
|
<ul>
|
|
|
<li>
|
|
|
<div>
|
|
|
教师姓名:
|
|
|
</div>
|
|
|
<div id="person_name">
|
|
|
|
|
|
</div>
|
|
|
</li>
|
|
|
<li>
|
|
|
<div>
|
|
|
申请单位:
|
|
|
</div>
|
|
|
<div id="target_bureau_name">
|
|
|
|
|
|
</div>
|
|
|
</li>
|
|
|
<li>
|
|
|
<div>
|
|
|
申请时间:
|
|
|
</div>
|
|
|
<div id="apply_time">
|
|
|
|
|
|
</div>
|
|
|
</li>
|
|
|
<li>
|
|
|
<div>
|
|
|
申请原因:
|
|
|
</div>
|
|
|
<div id="apply_message">
|
|
|
|
|
|
</div>
|
|
|
</li>
|
|
|
<li>
|
|
|
<div>
|
|
|
审核状态:
|
|
|
</div>
|
|
|
<div id="status_id">
|
|
|
|
|
|
</div>
|
|
|
</li>
|
|
|
<li>
|
|
|
<div>
|
|
|
审核时间:
|
|
|
</div>
|
|
|
<div id="echo_time">
|
|
|
|
|
|
</div>
|
|
|
</li>
|
|
|
<li>
|
|
|
<div>
|
|
|
审核意见:
|
|
|
</div>
|
|
|
<div id="echo_message">
|
|
|
|
|
|
</div>
|
|
|
</li>
|
|
|
</ul>
|
|
|
|
|
|
<button style="margin: 15px 0" class="layui-btn" id="closeDialog">关闭</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<script src="../../lib/layui/layui.js"></script>
|
|
|
<script>
|
|
|
|
|
|
|
|
|
layui.extend({
|
|
|
admin: '{/}../../static/js/admin'
|
|
|
});
|
|
|
layui.use(['form', 'jquery', 'admin', 'layer', 'table', 'laytpl'], function () {
|
|
|
var form = layui.form,
|
|
|
$ = layui.jquery,
|
|
|
admin = layui.admin,
|
|
|
layer = layui.layer,
|
|
|
table = layui.table,
|
|
|
laytpl = layui.laytpl;
|
|
|
|
|
|
$(function () {
|
|
|
$.ajax({
|
|
|
type: "GET",
|
|
|
async: false,
|
|
|
url: '/FengHuang/teacherYd/getTeacherTransferInfoById?id='+GetQueryString("id"),
|
|
|
dataType: "json",
|
|
|
success: function (data) {
|
|
|
$("#person_name").text(data[0].person_name);
|
|
|
$("#target_bureau_name").text(data[0].target_bureau_name);
|
|
|
$("#echo_time").text(data[0].echo_time);
|
|
|
$("#echo_message").text(data[0].echo_message);
|
|
|
$("#apply_message").text(data[0].apply_message);
|
|
|
$("#apply_time").text(data[0].apply_time);
|
|
|
if(data[0].status_id=="1"){
|
|
|
$("#echo_message").text("");
|
|
|
$("#echo_time").text("");
|
|
|
$("#status_id").html("<button class=\"layui-btn layui-btn-sm layui-btn-radius layui-btn-warm\">未审核</button>");
|
|
|
}else if(data[0].status_id=="2"){
|
|
|
$("#status_id").html("<button class=\"layui-btn layui-btn-sm layui-btn-radius\">审核通过</button>");
|
|
|
}else if(data[0].status_id=="3"){
|
|
|
$("#status_id").html("<button class=\"layui-btn layui-btn-sm layui-btn-radius layui-btn-danger\">审核未通过</button>");
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
})
|
|
|
$("#closeDialog").click(function () {
|
|
|
var index=parent.layer.getFrameIndex(window.name);
|
|
|
parent.layer.close(index);
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
</html> |