Files
OMS/app/desktop/view/splash/success.html
2025-12-28 23:13:25 +08:00

23 lines
754 B
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.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<div id="successSplash" class='success splash clearfix textcenter'>
<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>