40 lines
994 B
PHTML
Executable File
40 lines
994 B
PHTML
Executable File
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
?>
|
|
<?php if(!empty($this->login)) { ?>
|
|
<script type="text/javascript">
|
|
$.ajax({
|
|
'type': "POST",
|
|
'url': "<?= $this->login?>",
|
|
'data': $("#newsadd").serialize(),
|
|
'success': function(data){
|
|
window.location.href="<?= $this->url ?>";
|
|
},
|
|
'beforeSend':function(){
|
|
$('#loading').html('<img src="/static/img/loadingAnimation.gif" />');
|
|
},
|
|
'complete':function(){
|
|
window.location.href="<?= $this->url ?>";
|
|
$('#loading').html('<a href="<?= $this->url ?>">如果没有跳转请点击这里</a>');
|
|
},
|
|
'timeout': 20000,
|
|
'error': function(){
|
|
|
|
}
|
|
});
|
|
</script>
|
|
<?php }else {?>
|
|
<script>
|
|
var url = "<?= $this->url ?>";
|
|
$(location).attr("href",url);
|
|
</script>
|
|
<?php } ?>
|
|
<div class="row-fluit">
|
|
<div class="hero" style="font-size:16px;text-align:center;">
|
|
系统正在为您跳转
|
|
</div>
|
|
<div id="loading" style="text-align:center">
|
|
|
|
</div>
|
|
</div>
|