begin
This commit is contained in:
90
gue_success.html
Normal file
90
gue_success.html
Normal file
@@ -0,0 +1,90 @@
|
||||
<!doctype html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="img/tmr3.png" type="image/x-icon"/>
|
||||
<link rel="stylesheet" type="text/css" href="style/font-awesome/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="style/style.css"/>
|
||||
<style>
|
||||
.success_fully{
|
||||
padding: 20px 30px
|
||||
}
|
||||
.success_fully>h2{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="col-content">
|
||||
<div id="top_bar">
|
||||
<!--头部-->
|
||||
</div>
|
||||
<div class="article">
|
||||
<div class="art_side">
|
||||
|
||||
<!--侧边栏-->
|
||||
|
||||
</div>
|
||||
|
||||
<div class="art_main art_main_con back_fff">
|
||||
<div class="success_fully">
|
||||
<h2>Submitted successfully</h2>
|
||||
<div class="tsyu_two">
|
||||
<!-- <br>Thank you for applying as the guest editor for Special Issue.-->
|
||||
<!-- <br><br>The final approval of any proposal will be decided by the Traditional Medicine Research's editorial team and the journal’s Academic Editors.-->
|
||||
<!-- <br><br>Once finalized, Traditional Medicine Research will post the Call for Papers on the journal’s page.-->
|
||||
<!-- <br><br>Our team will connect with you further by email.-->
|
||||
<!-- <br><br>Traditional Medicine Research's editorial team-->
|
||||
<!-- <br>tmr@tmrjournals.com-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<br clear="both">
|
||||
|
||||
</div>
|
||||
<div class="footer">
|
||||
<!--底部菜单栏-->
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="js/jquery-cookie.js"></script>
|
||||
<script src="js/return-top.js"></script>
|
||||
<script src="js/js.js"></script>
|
||||
<script src="js/side.js"></script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
side_list();
|
||||
|
||||
// 获取地址栏信息
|
||||
function getQueryString(name) {
|
||||
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
|
||||
var r = window.location.search.substr(1).match(reg);
|
||||
if (r != null) return unescape(r[2]);
|
||||
return null;
|
||||
}
|
||||
var styu_ID = getQueryString('J_num'); //消息
|
||||
if(styu_ID=='22'){
|
||||
$('.success_fully>h2').html('提交成功');
|
||||
}
|
||||
$.ajax({
|
||||
type: 'post', url: apiUrl + 'api/Special/getSpecialAlert',
|
||||
data: {journal_id:styu_ID},
|
||||
success: function (result) {
|
||||
if (result.code == 0) {
|
||||
$('.tsyu_two').html(result.data.alertInfo.alert);
|
||||
} else {
|
||||
ShowDanger("Request was aborted!");
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
</html>
|
||||
Reference in New Issue
Block a user