暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

dispatch_jump.htm 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. $(function(){
  23. var height2=$('.system-message').height();
  24. var height1=$(window).height();
  25. $('.system-message').css('margin-top',((height1-height2)/3)-30);
  26. });
  27. </script>
  28. <!-- Bootstrap core CSS -->
  29. <link href="__PUBLIC__/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  30. </head>
  31. <body>
  32. <div class="system-message">
  33. {switch name="$code"}
  34. {case value="1"}
  35. <div class="status-ico status-ico-ok"></div>
  36. <p class="success">
  37. {in name=':get_current_lang()' value='cn,zh'}
  38. {if condition="stristr($msg, '__html__')"}
  39. {$msg|str_replace='__html__','',###}
  40. {else /}
  41. {$msg|strip_tags=###}
  42. {/if}
  43. {else /}
  44. success
  45. {/in}
  46. </p>
  47. {/case}
  48. {case value="0"}
  49. <div class="status-ico status-ico-error"></div>
  50. <p class="error">
  51. {if condition="stristr($msg, '__html__')"}
  52. {$msg|str_replace='__html__','',###}
  53. {else /}
  54. {$msg|strip_tags=###}
  55. {/if}
  56. </p>
  57. {/case}
  58. {/switch}
  59. <p class="jump">
  60. {php}
  61. $foreign_msg = sprintf(foreign_lang('gbook12', get_current_lang()), '<a id="href" href="'.$url.'">', '</a>');
  62. {/php}
  63. {$foreign_msg} <b id="wait" data-data="{$data}">{$wait}</b>
  64. </p>
  65. </div>
  66. <script type="text/javascript">
  67. (function(){
  68. var wait = document.getElementById('wait'),
  69. href = document.getElementById('href').href;
  70. var interval = setInterval(function(){
  71. var time = --wait.innerHTML;
  72. if(time <= 0) {
  73. location.href = href;
  74. clearInterval(interval);
  75. };
  76. }, 1000);
  77. /*留言自动发送邮箱*/
  78. var gbook_submit = document.getElementById('wait').getAttribute("data-data");
  79. var data = gbook_submit.split("|");
  80. if (data.length > 0 && data[0] == 'gbook_submit') {
  81. //发送邮箱
  82. $.ajax({
  83. type: "post",
  84. data: {type:data[0],tid:data[1],aid:data[2],form_type:data[3],_ajax:1},
  85. dataType: 'json',
  86. // timeout: 3000,
  87. url: "{:url('api/Ajax/send_email')}",
  88. });
  89. //发送短信
  90. $.ajax({
  91. type: "post",
  92. data: {scene:11,_ajax:1},
  93. dataType: 'json',
  94. // timeout: 3000,
  95. url: "{:url('api/Ajax/SendMobileCode')}",
  96. });
  97. }
  98. /*--end*/
  99. })();
  100. </script>
  101. </body>
  102. </html>