13 lines
648 B
PHTML
13 lines
648 B
PHTML
<div class="container">
|
|
<div class="hero-unit">
|
|
<h2><?= $this->message ?><?php if(!empty($this->url)) echo ",系统正在为您跳转..."?></h2>
|
|
<?php if(!empty($this->url)) {?>
|
|
<?php if($this->url == -1) { ?>
|
|
<a href="javascript:history.go(-1);">如果没有跳转请点击这样</a>
|
|
<script language="javascript">setTimeout("history.go(-1)",3000);</script>
|
|
<?php }else {?>
|
|
<a href="<?= $this->url ?>">如果没有跳转请点击这样</a>
|
|
<script language="javascript">setTimeout("self.location='<?= $this->url?>'",3000);</script>
|
|
<?php } } ?>
|
|
</div>
|
|
</div>
|