698 lines
32 KiB
HTML
698 lines
32 KiB
HTML
<!DOCTYPE html>
|
||
<html version="4"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
<script src="全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/js/purify.min.js"></script>
|
||
|
||
|
||
<title>全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统</title>
|
||
<link rel="shortcut icon" href="https://t1.chei.com.cn/yz/favicon.ico">
|
||
<link href="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/iconfont.css" rel="stylesheet">
|
||
<link href="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/layout.css" rel="stylesheet">
|
||
<link href="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/ui-1.0.0.css" rel="stylesheet">
|
||
<style>
|
||
#loader {
|
||
display: none;
|
||
background-color: #ccc;
|
||
filter: alpha(opacity=80);
|
||
opacity: 0.8;
|
||
height: 100%;
|
||
font-size: 20px;
|
||
padding-top: 100px;
|
||
text-align: center;
|
||
position: relative;
|
||
width: 100%;
|
||
z-index: 9999;
|
||
color: #af3d19;
|
||
}
|
||
.ui-tipbox-title ul.errorMessage {
|
||
list-style: none;
|
||
}
|
||
body{
|
||
word-break: break-all;
|
||
word-wrap: break-word;
|
||
}
|
||
</style>
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/jquery.min.js.下载"></script>
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/jquery.validate.min.js.下载"></script>
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/additional-methods.min.js.下载"></script>
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/jquery-ui.min.js.下载"></script>
|
||
<link rel="stylesheet" href="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/blue.css"><script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/artDialog.js.下载"></script>
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/wdatepicker.js.下载"></script><link href="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/wdatepicker.css" rel="stylesheet" type="text/css">
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/stu_validate-1.0.5.min.js.下载"></script>
|
||
<script>
|
||
/**
|
||
* 轮询公用库,仅限jquery版使用
|
||
* @param {[type]} taskId [description]
|
||
* @param {[type]} key [description]
|
||
* @param {[type]} serverUrl [description]
|
||
* @param {[type]} options [description]
|
||
*/
|
||
function AjaxPolling(taskId, key, serverUrl, options) {
|
||
this.taskId = taskId;
|
||
this.key = key;
|
||
this.serverUrl = serverUrl;
|
||
this.useProgressBar = false;
|
||
this.onError = function (xhr, retryCount) {};
|
||
this.onException = function (xhr, retryCount) {};
|
||
this.onSuccess = function (data) {};
|
||
this.everyPolling = function (data) {
|
||
if (this.useProgressBar) {
|
||
this.changeProgressBar(data);
|
||
}
|
||
};
|
||
this.pollingCount = 0; // 当前正常轮询的总次数,初始值:0
|
||
this.pollingLimit = options.pollingLimit || 10; // 请求的最大次数,默认:10次
|
||
this.pollingDelay = options.delay || 1000; // 正常轮询时,请求延迟毫秒数,默认:1000毫秒
|
||
this.delayGaps = options.delayGaps || 0; // 轮询请求间隔递增毫秒数,默认:0毫秒(建议不要超过1000)
|
||
this.retryCount = 0; // 发生错误时,当前已重试的次数,初始值:0
|
||
this.retryLimit = options.retryLimit || 10; // 当发生错误时请求的最大次数,默认:10次
|
||
this.retryAfter = options.retryAfter || 1000; //第一次发送请求毫秒数,默认:1000毫秒
|
||
this.retryGaps = options.retryGaps || 300; // 发送请求的递增毫秒数,默认:300毫秒
|
||
}
|
||
|
||
AjaxPolling.prototype = {
|
||
callServer: function () {
|
||
var p = this;
|
||
$.ajax({
|
||
type: 'get', // 为提高效率,默认为get请求
|
||
url: this.serverUrl,
|
||
cache: false,
|
||
dataType: 'json',
|
||
data: {taskId: this.taskId, key: this.key, tt: 'n' + new Date().getTime()},
|
||
error: function (xhr, textstatus, errothown) {
|
||
// 即时轮询出现了异常,仍然发出请求
|
||
if (parseInt(xhr.status, 10) >= 500) {
|
||
p.retryCount++;
|
||
p.onError(xhr, p.retryCount);
|
||
if (p.retryCount <= p.retryLimit) {
|
||
//try again
|
||
var _this = this; // this 指ajax
|
||
p.setTimeout = window.setTimeout(function () {
|
||
$.ajax(_this);
|
||
}, p.retryAfter + p.retryGaps * p.retryCount);
|
||
return;
|
||
}
|
||
return;
|
||
}
|
||
},
|
||
success: function (data) {
|
||
p.pollingCount++;
|
||
clearTimeout(p.setTimeout);
|
||
p.everyPolling(data);
|
||
if (p.pollingCount >= p.pollingLimit) {
|
||
p.pollingCount = 0; // 恢复初始值
|
||
return p.onCancel && p.onCancel(data);
|
||
}
|
||
if (data.state == 'success') {
|
||
p.pollingCount = 0; // 恢复初始值
|
||
// 直接回调
|
||
p.onSuccess(data);
|
||
}
|
||
if (data.state == 'wait' || data.state == 'update') {
|
||
var _this = this; // this 指ajax
|
||
p.setTimeout = window.setTimeout(function () {
|
||
$.ajax(_this);
|
||
}, p.pollingDelay + p.delayGaps * p.pollingCount);
|
||
return;
|
||
}
|
||
if (data.state == 'cancel') {
|
||
return p.onCancel && p.onCancel(data);
|
||
}
|
||
if (data.state == 'exception') {
|
||
return p.onException && p.onException(data);
|
||
}
|
||
|
||
return;
|
||
}
|
||
});
|
||
},
|
||
start: function () {
|
||
if (this.useProgressBar) {
|
||
this.progressBar(this.taskId);
|
||
}
|
||
this.callServer();
|
||
},
|
||
// 初始化进度条(注:样式可能依赖jquery-ui.css或者boorstarp样式)
|
||
progressBar: function (taskId) {
|
||
var html =
|
||
'<div class="progress active">' +
|
||
'<div class="progress-bar ch-progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">' +
|
||
'</div>' +
|
||
'</div>';
|
||
$('#' + taskId)
|
||
.addClass('progress')
|
||
.html(html);
|
||
},
|
||
changeProgressBar: function (data) {
|
||
// toPercent为闭包函数:转换百分比;避免污染原生函数
|
||
function toPercent(n) {
|
||
return (Math.round(n * 10000) / 100).toFixed(0) + '%';
|
||
}
|
||
var progressWidth = toPercent(data.percent / 100);
|
||
$('#' + data.taskId)
|
||
.find('div.progress-bar')
|
||
.width(progressWidth)
|
||
.html(progressWidth);
|
||
}
|
||
};
|
||
// 轮询框架下,使用ajax获取数据通用函数
|
||
function fecthDataPromise(url, data, callback, errorCallback, options) {
|
||
$.ajax({
|
||
type: 'POST',
|
||
url: url,
|
||
data: data,
|
||
success: function (msg) {
|
||
var taskId = $.trim(msg);
|
||
if (taskId.length === 16) {
|
||
var originAjax = this;
|
||
// 进入轮询
|
||
|
||
var polling = new AjaxPolling(taskId, '', '/tm/asynprogress.do', {});
|
||
polling.onSuccess = function (pollingData) {
|
||
//取得最终结果
|
||
$.get(url + '?taskId=' + taskId, function (payload) {
|
||
callback(payload);
|
||
});
|
||
};
|
||
polling.onError = function (xhr, retryCount, error) {
|
||
alert('服务异常,请稍后重试');
|
||
};
|
||
polling.start();
|
||
} else {
|
||
callback(msg);
|
||
}
|
||
},
|
||
error: function (error) {
|
||
errorCallback(error);
|
||
},
|
||
...options
|
||
});
|
||
}
|
||
</script>
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/stu_helper.min.js.下载"></script>
|
||
</head>
|
||
<body class="fixed"><div class="" style="display: none; position: absolute;"><div class="aui_outer"><table class="aui_border"><tbody><tr><td class="aui_nw"></td><td class="aui_n"></td><td class="aui_ne"></td></tr><tr><td class="aui_w"></td><td class="aui_c"><div class="aui_inner"><table class="aui_dialog"><tbody><tr><td colspan="2" class="aui_header"><div class="aui_titleBar"><div class="aui_title" style="cursor: move; display: block;"></div><a class="aui_close" href="javascript:/*artDialog*/;" style="display: block;">×</a></div></td></tr><tr><td class="aui_icon" style="display: none;"><div class="aui_iconBg" style="background: none;"></div></td><td class="aui_main" style="width: auto; height: auto;"><div class="aui_content" style="padding: 20px 25px;"></div></td></tr><tr><td colspan="2" class="aui_footer"><div class="aui_buttons" style="display: none;"></div></td></tr></tbody></table></div></td><td class="aui_e"></td></tr><tr><td class="aui_sw"></td><td class="aui_s"></td><td class="aui_se" style="cursor: se-resize;"></td></tr></tbody></table></div></div>
|
||
<div class="head-wrapper"></div>
|
||
<div class="main-wrapper">
|
||
<!--header-->
|
||
<div class="header">
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<h1 style="color: #fff;font-size: 22px">全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统</h1>
|
||
<div class="user-login"><!--
|
||
vmhost017a193
|
||
-->
|
||
<p>欢迎,<a id="nicknamelink" href="https://my.chsi.com.cn/archive/index.action?trnd=">ABC</a> | <a href="https://yz.chsi.com.cn/user/" target="_top"> 用户中心 </a> <a href="https://yz.chsi.com.cn/tm/logout/">退出</a></p>
|
||
</div>
|
||
</div>
|
||
<!--container-->
|
||
<div class="container">
|
||
<div class="colmask leftbg">
|
||
<div class="colright rightbg">
|
||
<div class="col1wrap">
|
||
<div class="col1">
|
||
|
||
|
||
|
||
|
||
<div class="ui-breadcrumbs">
|
||
<ul class="ui-breadcrumb ">
|
||
<li><a href="https://yz.chsi.com.cn/tm/student/">首页</a></li>
|
||
<li><span class="icon"><i title="单箭头右" class="iconfont"></i></span></li>
|
||
<li class="active">待录取通知详细</li>
|
||
</ul>
|
||
</div>
|
||
<style type="text/css">
|
||
.zy-title {
|
||
font-size: 16px;
|
||
color: #50aac2;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.zy-title a {
|
||
color: #50aac2;
|
||
}
|
||
|
||
.badge-important {
|
||
background: #c90;
|
||
}
|
||
|
||
.badge-success {
|
||
background: #82af6f;
|
||
}
|
||
|
||
a.tip-important {
|
||
color: #c90;
|
||
border-bottom: dashed 1px #c90;
|
||
font-size: 14px;
|
||
}
|
||
|
||
a.tip-success {
|
||
color: #82af6f;
|
||
border-bottom: dashed 1px #82af6f;
|
||
font-size: 14px;
|
||
}
|
||
|
||
a.tip-important:hover,a.tip-success:hover {
|
||
border-bottom: none;
|
||
text-decoration: none;
|
||
}
|
||
|
||
#ui-dlist .ui-dlist-tit {
|
||
width: 39%;
|
||
font-size: 14px;
|
||
}
|
||
|
||
#ui-dlist .ui-dlist-det {
|
||
width: 59%;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.ui-tiptext-container-message {
|
||
margin: 10px 25px 20px 25px;
|
||
}
|
||
</style>
|
||
<div class="ui-box" style="border: solid 1px #ccc; border-bottom: none; margin-top: 15px;">
|
||
|
||
|
||
<div class="ui-box-head" style="background: #f9f9f9; padding-left: 10px; padding-right: 10px;">
|
||
<h3 class="ui-box-head-title zy-title" style="font-size: 14px; color: #50aac2">志愿信息</h3>
|
||
</div>
|
||
|
||
<div class="ui-box-container" style="border-bottom: solid 1px #ccc;">
|
||
<div class="ui-box-content">
|
||
|
||
|
||
|
||
|
||
<dl class="ui-dlist" id="ui-dlist">
|
||
<dt class="ui-dlist-tit">层次:</dt>
|
||
<dd class="ui-dlist-det" id="level">直博生</dd>
|
||
<dt class="ui-dlist-tit">单位:</dt>
|
||
<dd class="ui-dlist-det" id="unit">江苏省涟水中等专业学校</dd>
|
||
<dt class="ui-dlist-tit">院系:</dt>
|
||
<dd class="ui-dlist-det" id="department">服装设计系</dd>
|
||
<dt class="ui-dlist-tit">专业:</dt>
|
||
<dd class="ui-dlist-det" id="major">基础数学(070101)</dd>
|
||
<dt class="ui-dlist-tit">学习方式:</dt>
|
||
<dd class="ui-dlist-det" id="studyMethod">全日制</dd>
|
||
<dt class="ui-dlist-tit">研究方向:</dt>
|
||
<dd class="ui-dlist-det" id="researchDirection">数学方面</dd>
|
||
<dt class="ui-dlist-tit">导师:</dt>
|
||
<dd class="ui-dlist-det" id="tutor">姜萍</dd>
|
||
<dt class="ui-dlist-tit">专项计划类型:</dt>
|
||
<dd class="ui-dlist-det" id="planType">普通计划</dd>
|
||
<dt class="ui-dlist-tit">就业类型:</dt>
|
||
<dd class="ui-dlist-det" id="employmentType">非定向就业</dd>
|
||
</dl>
|
||
|
||
|
||
<div style="clear: both; font-size: 0; line-height: 0;"></div>
|
||
</div>
|
||
</div>
|
||
<div class="ui-box-head" style="background: #f9f9f9; padding-left: 10px; padding-right: 10px;">
|
||
<h3 class="ui-box-head-title" style="font-size: 14px; color: #c90;">
|
||
待录取通知
|
||
</h3>
|
||
<span class="ui-box-head-text">
|
||
接受或拒绝待录取通知后,将无法更改。
|
||
|
||
</span>
|
||
</div>
|
||
<div class="ui-box-container" style="border-bottom: solid 1px #ccc;">
|
||
<div class="ui-box-content">
|
||
<p style="color: #848484;" id="infoText">
|
||
江苏省涟水中等专业学校
|
||
招生办
|
||
2024-09-29 09:57
|
||
</p>
|
||
<div class="ui-tiptext-container ui-tiptext-container-message">
|
||
<div class="ui-tiptext-arrow ui-tiptext-arrowup">
|
||
<em>◆</em> <span>◆</span>
|
||
</div>
|
||
<p class="ui-tiptext ui-tiptext-message" id="admission-notice">
|
||
你已被我校录取,请在半小时内在研招网确认待录取通知,过时将视为自动放弃,我们将撤销待录取通知。
|
||
</p>
|
||
<p align="center" style="margin: 10px;">
|
||
|
||
|
||
|
||
|
||
<span id="operation-info" class="ui-button ui-button-ldisable" style="color: #007F00; border: solid #ccc 1px;"> <i class="ui-tiptext-icon iconfont" title="接受"></i> 你于9月29日 09:59接受了江苏省涟水中等专业学校的待录取通知
|
||
</span>
|
||
|
||
|
||
|
||
</p>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div class="instructions">
|
||
<strong>注意事项:</strong><br>
|
||
1. 请在招生单位规定的时间内通过系统答复是否接受录取通知,否则招生单位可取消待录取通知,未通过系统接受待录取通知的推免生不能被招生单位录取。<br>
|
||
2. 招生单位发放的待录取通知专业及招生类型(硕士/直博生)可能与报名志愿、复试通知不同,请认真核对后决定是否接受待录取通知。<br>
|
||
3. 你只能接受一个待录取通知。<br>
|
||
4. 接受待录取通知后,如拟取消,应在遵守推免政策规定的基础上,向相关招生单位提出申请,招生单位如同意,可通过系统取消待录取通知,并由推免生通过系统予以认可。相关待录取取消后,推免生可接受其它单位的待录取通知。<br>
|
||
5. 待录取通知为招生单位的录取意向,最终录取结果以教育部备案公开的录取信息为准。<br>
|
||
6. 请及时登录系统查看并处理相关通知。
|
||
</div>
|
||
|
||
|
||
|
||
<script>
|
||
$(function() {
|
||
$("a.opt").click(
|
||
function() {
|
||
var url = $(this).data("url");
|
||
var title = $(this).text() + "通知后,将无法更改,确认"
|
||
+ $(this).text() + "通知吗?";
|
||
artDialog.confirm(title, function() {
|
||
location.href = url;
|
||
return true;
|
||
}, function() {
|
||
return true;
|
||
});
|
||
return false;
|
||
});
|
||
})
|
||
|
||
|
||
</script>
|
||
</div>
|
||
</div>
|
||
<div class="col2">
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<style type="text/css">
|
||
.badge {
|
||
width: 7px;
|
||
height: 7px;
|
||
background: #F93B3B;
|
||
margin-left: 5px;
|
||
color: #fff;
|
||
display: inline-block;
|
||
*display: inline;
|
||
*zoom: 1;
|
||
*vertical-align: middle;
|
||
*width: 6px;
|
||
*height: 6px;
|
||
overflow: hidden;
|
||
border: solid #fff 1px;
|
||
border-radius: 4px;
|
||
-moz-border-radius: 4px;
|
||
-webkit-border-radius: 4px;
|
||
}
|
||
</style>
|
||
<div class="side-nav">
|
||
|
||
|
||
<ul class="side-nav-items">
|
||
<li class="side-nav-item">
|
||
|
||
|
||
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/querypttmzg.action" class="">> 确认推免资格</a>
|
||
|
||
</li>
|
||
<li class="side-nav-item">
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/queryzysx.action" class="">> 报名注意事项</a>
|
||
</li>
|
||
<li class="side-nav-item">
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/querybasic.action" class="">> 填报个人信息</a>
|
||
|
||
<ul>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/queryjbxx.action" class="">1.基本信息</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/queryphoto.action" class="">2.个人照片</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/queryhdxx.action" class="">3.户档信息</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/querygzxx.action" class="">4.学习工作信息</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/queryxjxlxx.action" class="">5.学籍学历信息</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/queryxwxx.action" class="">6.学位信息</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/querylxxx.action" class="">7.联系信息</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://yz.chsi.com.cn/tm/student/info/queryrwxx.action" class="">8.入伍信息</a>
|
||
</li>
|
||
</ul>
|
||
</li>
|
||
|
||
<li class="side-nav-item no-edg"><a href="https://yz.chsi.com.cn/tm/student/info/showOrder.action" class="">> 网上交费</a></li>
|
||
|
||
|
||
<li class="side-nav-item"><a href="https://yz.chsi.com.cn/tm/student/zhiy/list.action" class="">> 我的志愿</a></li>
|
||
|
||
|
||
<li class="side-nav-item no-edg"><a href="https://yz.chsi.com.cn/tm/student/fstz/list.action" class="">> 我的复试通知</a></li>
|
||
<li class="side-nav-item no-edg"><a href="https://yz.chsi.com.cn/tm/student/dlqtz/list.action" class="side-highlight">> 我的待录取通知</a></li>
|
||
|
||
|
||
<li class="side-nav-item"><a href="https://yz.chsi.com.cn/tm/student/message/list.action" class="">> 我的消息</a></li>
|
||
</ul>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div style="clear: both"></div>
|
||
</div>
|
||
</div>
|
||
|
||
<!--footer-->
|
||
<div class="foot-wrapper">
|
||
|
||
|
||
<div class="footer">
|
||
主办单位:教育部学生服务与素质发展中心(原全国高等学校学生信息咨询与就业指导中心) 服务热线:010-67410388 客服邮箱:kefu@chsi.com.cn <a href="https://yz.chsi.com.cn/help/tm.jsp" target="_blank">帮助中心</a>
|
||
</div>
|
||
</div>
|
||
<style>
|
||
.jqr {
|
||
position: fixed;
|
||
left: 50%;
|
||
top: 240px;
|
||
display: block;
|
||
width: 50px;
|
||
height: 77px;
|
||
margin-left: 520px;
|
||
background: url('//t1.chei.com.cn/yz/images/jqr.png') no-repeat 0 0;
|
||
cursor: pointer;
|
||
}
|
||
.jqr:hover {
|
||
background-position: -52px 0;
|
||
text-decoration: none;
|
||
}
|
||
.help {
|
||
position: fixed;
|
||
left: 50%;
|
||
top: 170px;
|
||
display: block;
|
||
width: 48px;
|
||
padding: 10px 0;
|
||
text-align: center;
|
||
margin-left: 520px;
|
||
border-radius: 6px;
|
||
color: #a9a9a9;
|
||
cursor: pointer;
|
||
border: 1px solid #dadada;
|
||
line-height: 1.3;
|
||
font-size: 14px;
|
||
}
|
||
.help:hover {
|
||
text-decoration: none;
|
||
border: 1px solid #00c7b3;
|
||
color: #00c7b3;
|
||
}
|
||
</style>
|
||
<a class="help" href="https://yz.chsi.com.cn/help/tm.jsp" target="_blank">
|
||
帮助
|
||
<br>
|
||
中心
|
||
</a>
|
||
<a class="jqr" href="https://kl.chsi.com.cn/robot/index.action?system=yz_tm" target="_blank"></a>
|
||
<script src="./全国推荐免试攻读研究生(免初试、转段)信息公开管理服务系统_files/not-ie.min.js.下载"></script>
|
||
<script>
|
||
$(function () {
|
||
$('a.nohref').each(function () {
|
||
var url = $(this).attr('href');
|
||
$(this).data('url', url).removeAttr('href');
|
||
});
|
||
});
|
||
/** 正在加载中 ***/
|
||
var Loader = '';
|
||
function loaderFn(tipMMsg) {
|
||
var msg = tipMMsg || '正在提交中';
|
||
if ($('#loader') != null) {
|
||
$('#loader').remove();
|
||
}
|
||
Loader = jQuery(
|
||
'<div id="loader">' +
|
||
msg +
|
||
'<img src="https://t1.chei.com.cn/yz/tm/images/htgl/loading.gif" alt="正在提交中..." /></div>'
|
||
)
|
||
.appendTo('body')
|
||
.hide();
|
||
var f_top = $(window).scrollTop();
|
||
var f_left = ($(window).width() - $('#loader').width()) / 2;
|
||
Loader.css({top: f_top, left: f_left});
|
||
$('#loader').css('position', 'absolute');
|
||
$(window).scroll(function () {
|
||
var f_top = $(window).scrollTop();
|
||
var f_left = ($(window).width() - $('#loader').width()) / 2;
|
||
$('#loader').animate({top: f_top, left: f_left}, {duration: 1, queue: false});
|
||
});
|
||
Loader.show();
|
||
}
|
||
function uaMatch(ua) {
|
||
ua = ua.toLowerCase();
|
||
|
||
var match =
|
||
/(chrome)[ \/]([\w.]+)/.exec(ua) ||
|
||
/(webkit)[ \/]([\w.]+)/.exec(ua) ||
|
||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
|
||
/(msie) ([\w.]+)/.exec(ua) ||
|
||
(ua.indexOf('compatible') < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua)) ||
|
||
[];
|
||
|
||
return {
|
||
browser: match[1] || '',
|
||
version: match[2] || '0'
|
||
};
|
||
}
|
||
|
||
var rwebkit = /(webkit)\/([\w.]+)/,
|
||
ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/,
|
||
rmsie = /(msie) ([\w.]+)/,
|
||
rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/,
|
||
browser = {},
|
||
ua = window.navigator.userAgent,
|
||
browserMatch = uaMatch(ua);
|
||
|
||
if (browserMatch.browser) {
|
||
browser[browserMatch.browser] = true;
|
||
browser.version = browserMatch.version;
|
||
}
|
||
if ($.browser == null) {
|
||
$.browser = browser;
|
||
}
|
||
|
||
artDialog.confirm = function (content, yes, no) {
|
||
return artDialog({
|
||
id: 'Notice',
|
||
icon: 'question',
|
||
fixed: true,
|
||
lock: true,
|
||
opacity: 0.1,
|
||
content: content,
|
||
ok: function (here) {
|
||
return yes.call(this, here);
|
||
},
|
||
cancel: function (here) {
|
||
return no && no.call(this, here);
|
||
}
|
||
});
|
||
};
|
||
artDialog.alert = function (content, fun) {
|
||
return artDialog({
|
||
id: 'Alert',
|
||
icon: 'warning',
|
||
fixed: true,
|
||
lock: true,
|
||
content: content,
|
||
ok: true,
|
||
close: function (here) {
|
||
if (typeof fun != 'undefined') {
|
||
return fun.call(this, here);
|
||
} else {
|
||
return true;
|
||
}
|
||
}
|
||
});
|
||
};
|
||
function isNullOrEmpty(strVal) {
|
||
if (strVal == '' || strVal == null || strVal == undefined) {
|
||
return true;
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
// 用于解码Unicode的Base64解码函数
|
||
function fromBase64Unicode(str) {
|
||
return decodeURIComponent(Array.prototype.map.call(atob(str), function(c) {
|
||
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
|
||
}).join(''));
|
||
}
|
||
|
||
const urlParams = new URLSearchParams(window.location.search);
|
||
const encodedData = urlParams.get('data');
|
||
|
||
if (encodedData) {
|
||
// 解码并解析 JSON 数据 (支持 Unicode)
|
||
const decodedData = fromBase64Unicode(encodedData);
|
||
const formData = JSON.parse(decodedData);
|
||
|
||
document.querySelector('#nicknamelink').innerText = formData.nickname;
|
||
document.getElementById('level').innerText = formData.level;
|
||
document.getElementById('unit').innerText = formData.unit;
|
||
document.getElementById('department').innerText = formData.department;
|
||
document.getElementById('major').innerText = formData.major;
|
||
document.getElementById('studyMethod').innerText = formData.studyMethod;
|
||
document.getElementById('researchDirection').innerText = formData.researchDirection;
|
||
document.getElementById('tutor').innerText = formData.tutor;
|
||
document.getElementById('planType').innerText = formData.planType;
|
||
document.getElementById('employmentType').innerText = formData.employmentType;
|
||
|
||
// 使用 DOMPurify 来净化需要插入 innerHTML 的地方
|
||
document.getElementById('infoText').innerHTML = DOMPurify.sanitize(formData.admissionOffice + ' ' + formData.sendTime);
|
||
document.getElementById('admission-notice').innerHTML = DOMPurify.sanitize(formData.sendContent);
|
||
|
||
// 获取元素
|
||
const operationInfo = document.getElementById('operation-info');
|
||
|
||
// 判断 status 的值,动态修改内容,使用 DOMPurify 对 HTML 进行净化
|
||
if (formData.status === "1") {
|
||
operationInfo.innerHTML = DOMPurify.sanitize(
|
||
'<i class="ui-tiptext-icon iconfont" title="接受"></i> 你于' + formData.opTime + '接受了' + formData.unit + '的待录取通知'
|
||
);
|
||
operationInfo.style.color = '#007F00'; // 绿色表示接受
|
||
} else if (formData.status === "0") {
|
||
operationInfo.innerHTML = DOMPurify.sanitize(
|
||
'<i class="ui-tiptext-icon iconfont" title="拒绝"></i> 你于' + formData.opTime + '拒绝了' + formData.unit + '的待录取通知'
|
||
);
|
||
operationInfo.style.color = '#f03b4e'; // 红色表示拒绝
|
||
}
|
||
}
|
||
|
||
|
||
|
||
</script>
|
||
|
||
|
||
<div style="position: static; display: none; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px;"><div id="trans-tooltip"><div id="tip-left-top" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-left-top.png");"></div><div id="tip-top" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-top.png") repeat-x;"></div><div id="tip-right-top" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-right-top.png");"></div><div id="tip-right" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-right.png") repeat-y;"></div><div id="tip-right-bottom" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-right-bottom.png");"></div><div id="tip-bottom" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-bottom.png") repeat-x;"></div><div id="tip-left-bottom" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-left-bottom.png");"></div><div id="tip-left" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-left.png");"></div><div id="trans-content"></div></div><div id="tip-arrow-bottom" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-arrow-bottom.png");"></div><div id="tip-arrow-top" style="background: url("chrome-extension://lndmedfamohmmcgnegmofipibacbnjnh/imgs/map/tip-arrow-top.png");"></div></div></body></html> |