📖 File Reader
<?php /*a:1:{s:86:"C:\wwwroot\haote.jiboshimr.cn\/vendor/liliuwei/thinkphp-jump/src/tpl/dispatch_jump.tpl";i:1742462942;}*/ ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>跳转提示</title>
<style type="text/css">
*{ padding: 0; margin: 0; }
body{ background: #f5f5f5; font-family: '微软雅黑'; color: #333; font-size: 16px; }
.system-message{ padding: 30px 0;margin: 150px auto;width: 440px;background: #f5f5f5;border-radius: 14px;}
.system-message h3{ font-size: 50px; font-weight: normal; line-height: 120px; margin-bottom: 12px;border: 1px solid #ccc}
.system-message .jump{ padding-top: 10px;font-size: 14px;padding-bottom: 14px;}
.system-message .jump a{ color: #333;}
.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 22px ;text-align: center;}
.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none;}
.cuowu_img{width: 140px;display: block;margin: 0 auto;}
@media (min-width: 320px) and (max-width: 800px){
.system-message{width: 300px;}
}
</style>
</head>
<body>
<div class="system-message">
<?php switch ($code) {case 1:?>
<img class="cuowu_img" src="/public/image/success.png"></img>
<p class="success"><?php echo(strip_tags($msg));?></p>
<?php break;case 0:?>
<img class="cuowu_img" src="/public/image/error.png"></img>
<p class="success"><?php echo(strip_tags($msg));?></p>
<?php break;} ?>
<p class="detail"></p>
<p class="jump" align="center">
页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>
</p>
</div>
<script type="text/javascript">
(function(){
var wait = document.getElementById('wait'),href = document.getElementById('href').href;
var interval = setInterval(function(){
var time = --wait.innerHTML;
if(time == 0) {
location.href = href;
clearInterval(interval);
};
}, 500);
})();
</script>
</body>
</html>