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

36 lines
982 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 class="error splash clearfix textcenter" id='failedSplash'>
<h4><{$msg}></h4>
<p>
<{assign var="id" value=$smarty.now}>
<{if $allreoad}>
<a id="splash-<{$id}>" onclick="location.reload()" >
<{else}>
<a id="splash-<{$id}>" href="<{$jumpto}>" >
<{/if}>
<{$wait}><{t}>秒后系统会自动跳转,也可点击本处<{/t}></a>
</p>
<{if count($errinfo)>0}>
<ul>
<{foreach from=$error_info item=item}>
<li>[<{$item[0]}>]<{$item[1]}>
<{if $env.const.debug_code}>
(<{$item[2]}>:<{$item[3]}>)
<{/if}>
</li>
<{/foreach}>
</ul>
<{/if}>
</div>
<script>
var time = <{$wait}>*1000;
(function(){
location.href = '<{$jumpto}>';
}).delay(time);
</script>