mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-07 07:15:33 +08:00
24 lines
737 B
HTML
24 lines
737 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="notice splash clearfix textcenter" id='noticeSplash'>
|
||
<h4><{$msg}></h4>
|
||
<{assign var="id" value=$smarty.now}>
|
||
<p>
|
||
<{if $allreoad}>
|
||
<a id="splash-<{$id}>" onclick="location.reload()" >
|
||
<{else}>
|
||
<a id="splash-<{$id}>" href="<{$jumpto}>" target="{method:'post',data:'a=b'}">
|
||
<{/if}>
|
||
<{if $wait>1}><{$wait}><{t}>秒后系统会自动跳转,也可点击本处<{/t}><{else}><{t}>正在跳转...<{/t}><{/if}></a>
|
||
</p>
|
||
</div>
|
||
<script>
|
||
var time = <{$wait}>*1000;
|
||
(function(){
|
||
location.href = '<{$jumpto}>';
|
||
}).delay(time);
|
||
</script>
|