123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- {__NOLAYOUT__}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
- <title>跳转提示</title>
- <style type="text/css">
- *{ padding: 0; margin: 0; }
- body{ background: #fff; font-family: '微软雅黑'; color: #CCC; font-size: 16px; }
- .system-message{ padding: 24px 48px; margin:auto; box-shadow: 0px 0px 10px rgba(0,0,0,.2)!important; top:50%; width:500px; border-radius:2px;
- -moz-border-radius:10px; /* Old Firefox */}
- .system-message .jump{ padding-top: 10px; color: #999;text-align: center;}
- .system-message .success,.system-message .error{ line-height: 1.8em; color: #000; font-size: 18px;font-weight: bold; text-align: center;}
- .system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
- .status-ico{margin: 20px auto;width: 73px;height: 76px;display: block;background: url(__STATIC__/admin/images/ico_right_wrong.png) no-repeat}
- .status-ico-ok{background-position: 0 0}
- .status-ico-error{background-position: -97px 0}
- @media (max-width: 767px) {.system-message{width: 90%;box-shadow:none!important;}}
- </style>
- <script type="text/javascript" src="__STATIC__/common/js/jquery.min.js?v={$version|default='v1.6.4'}"></script>
- <script type="text/javascript">
- var __root_dir__ = "__ROOT_DIR__";
- $(function(){
- var height2=$('.system-message').height();
- var height1=$(window).height();
- $('.system-message').css('margin-top',((height1-height2)/3)-30);
- });
- </script>
- <!-- Bootstrap core CSS -->
- <link href="__PUBLIC__/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
- </head>
- <body>
- <div class="system-message">
- {switch name="$code"}
- {case value="1"}
- <div class="status-ico status-ico-ok"></div>
- <p class="success">
- {if condition="stristr($msg, '__html__')"}
- {$msg|str_replace='__html__','',###}
- {else /}
- {$msg|strip_tags=###}
- {/if}
- </p>
- {/case}
- {case value="0"}
- <div class="status-ico status-ico-error"></div>
- <p class="error">
- {if condition="stristr($msg, '__html__')"}
- {$msg|str_replace='__html__','',###}
- {else /}
- {$msg|strip_tags=###}
- {/if}
- </p>
- {/case}
- {/switch}
- <p class="jump">页面自动 <a id="href" href="{$url}" target="{empty name='$target'}_self{else /}{$target}{/empty}">跳转</a> 等待时间:<b id="wait">{$wait}</b>
- </p>
- </div>
- <script type="text/javascript">
- (function(){
- var wait = document.getElementById('wait'),
- href = document.getElementById('href').href,
- target = document.getElementById('href').target;
- var interval = setInterval(function(){
- var time = --wait.innerHTML;
- if(time <= 0) {
- if ('_parent' == target) {
- parent.location.href = href;
- } else {
- location.href = href;
- }
- clearInterval(interval);
- };
- }, 1000);
- })();
-
- // 保存后,生成首页
- function uphtml_index()
- {
- $.ajax({
- url:__root_dir__+"/index.php?clear=1",
- type:'GET',
- dataType:'html',
- data:{},
- success:function(res){
-
- }
- });
- }
- uphtml_index();
- </script>
- </body>
- </html>
|