Files
journal_com/gue_success.html
wangjinlei 6e7ee3dd44 begin
2023-05-18 09:42:12 +08:00

90 lines
3.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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 journals Academic Editors.-->
<!-- <br><br>Once finalized, Traditional Medicine Research will post the Call for Papers on the journals 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>