Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {__NOLAYOUT__}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
  6. <title>跳转提示</title>
  7. <style type="text/css">
  8. *{ padding: 0; margin: 0; }
  9. body{ background: #fff; font-family: '微软雅黑'; color: #CCC; font-size: 16px; }
  10. .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;
  11. -moz-border-radius:10px; /* Old Firefox */}
  12. .system-message .jump{ padding-top: 10px; color: #999;text-align: center;}
  13. .system-message .success,.system-message .error{ line-height: 1.8em; color: #000; font-size: 18px;font-weight: bold; text-align: center;}
  14. .system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
  15. .status-ico{margin: 20px auto;width: 73px;height: 76px;display: block;background: url(__STATIC__/admin/images/ico_right_wrong.png) no-repeat}
  16. .status-ico-ok{background-position: 0 0}
  17. .status-ico-error{background-position: -97px 0}
  18. @media (max-width: 767px) {.system-message{width: 90%;box-shadow:none!important;}}
  19. </style>
  20. <script type="text/javascript" src="__STATIC__/common/js/jquery.min.js?v={$version|default='v1.6.4'}"></script>
  21. <script type="text/javascript">
  22. var __root_dir__ = "__ROOT_DIR__";
  23. $(function(){
  24. var height2=$('.system-message').height();
  25. var height1=$(window).height();
  26. $('.system-message').css('margin-top',((height1-height2)/3)-30);
  27. });
  28. </script>
  29. <!-- Bootstrap core CSS -->
  30. <link href="__PUBLIC__/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  31. </head>
  32. <body>
  33. <div class="system-message">
  34. {switch name="$code"}
  35. {case value="1"}
  36. <div class="status-ico status-ico-ok"></div>
  37. <p class="success">
  38. {if condition="stristr($msg, '__html__')"}
  39. {$msg|str_replace='__html__','',###}
  40. {else /}
  41. {$msg|strip_tags=###}
  42. {/if}
  43. </p>
  44. {/case}
  45. {case value="0"}
  46. <div class="status-ico status-ico-error"></div>
  47. <p class="error">
  48. {if condition="stristr($msg, '__html__')"}
  49. {$msg|str_replace='__html__','',###}
  50. {else /}
  51. {$msg|strip_tags=###}
  52. {/if}
  53. </p>
  54. {/case}
  55. {/switch}
  56. <p class="jump">页面自动 <a id="href" href="{$url}" target="{empty name='$target'}_self{else /}{$target}{/empty}">跳转</a> 等待时间:<b id="wait">{$wait}</b>
  57. </p>
  58. </div>
  59. <script type="text/javascript">
  60. (function(){
  61. var wait = document.getElementById('wait'),
  62. href = document.getElementById('href').href,
  63. target = document.getElementById('href').target;
  64. var interval = setInterval(function(){
  65. var time = --wait.innerHTML;
  66. if(time <= 0) {
  67. if ('_parent' == target) {
  68. parent.location.href = href;
  69. } else {
  70. location.href = href;
  71. }
  72. clearInterval(interval);
  73. };
  74. }, 1000);
  75. })();
  76. // 保存后,生成首页
  77. function uphtml_index()
  78. {
  79. $.ajax({
  80. url:__root_dir__+"/index.php?clear=1",
  81. type:'GET',
  82. dataType:'html',
  83. data:{},
  84. success:function(res){
  85. }
  86. });
  87. }
  88. uphtml_index();
  89. </script>
  90. </body>
  91. </html>