Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

dispatch_jump.htm 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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. <title>跳转提示</title>
  6. <link href="__SKIN__/font/css/iconfont.css?v={$version}" rel="stylesheet" />
  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 30px; margin:auto; border: #e8e8e8 1px solid; top:50%; width:540px; background-color: #fff;box-shadow: 0 0 8px rgba(0,0,0,0.1);border-radius: 4px;overflow: hidden; }
  11. .system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 5px; }
  12. .system-message .jump{ padding-top: 10px; color: #999;}
  13. .system-message .success,.system-message .error{ line-height: 1.8em; color: #999; font-size: 36px; font-family: '黑体'; }
  14. .system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
  15. .system-message .tit{position: relative;height: 50px;line-height: 50px;width: 100%;border-bottom: 1px solid #eee;}
  16. .system-message .tit i{position: absolute;font-size: 26px;color: #53bb4c;}
  17. .system-message .tit b{margin: 0 15px 0 25px;font-weight: normal;font-size: 18px;color: #53bb4c;}
  18. .system-message .tit span{font-size: 14px;margin: 0 10px;color: #999;}
  19. .system-message ul{margin: 10px auto; overflow: hidden;}
  20. .system-message ul li{float: left;list-style: none;margin:5px 18px 5px 0;}
  21. .system-message .buttom{margin: 10px auto; width: 100%; text-align: center; line-height: 40px; color: red;}
  22. </style>
  23. <script type="text/javascript">
  24. var __root_dir__ = "__ROOT_DIR__";
  25. var __lang__ = "{$admin_lang}";
  26. </script>
  27. <script type="text/javascript" src="__STATIC__/common/js/jquery.min.js?v={$version|default='v1.6.4'}"></script>
  28. <script type="text/javascript">
  29. $(function(){
  30. var height2=$('.system-message').height();
  31. var height1=$(window).height();
  32. $('.system-message').css('margin-top',((height1-height2)/3)-30);
  33. });
  34. </script>
  35. <script src="__SKIN__/js/global.js?v={$version}"></script>
  36. <!-- Bootstrap core CSS -->
  37. <script type="text/javascript" src="__PUBLIC__/plugins/layer-v3.1.0/layer.js"></script>
  38. <link href="__PUBLIC__/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  39. </head>
  40. <body>
  41. <div style="display: block;height: 10px;background: #f4f4f4;clear: both;"></div>
  42. {switch name="$code"}
  43. {case value="1"}
  44. {php}
  45. $post = $_POST;
  46. isset($post['typeid']) && $post['tid'] = $post['typeid'];
  47. if (!empty($data) && is_array($data)) {
  48. $post = array_merge($post, $data);
  49. }
  50. $data = $post;
  51. $row = \think\Db::name('archives')
  52. ->field("b.*, a.*, a.aid as aid, c.ifsystem")
  53. ->alias('a')
  54. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  55. ->join('__CHANNELTYPE__ c', 'c.id = a.channel', 'LEFT')
  56. ->where('a.aid', 'eq', $data['aid'])
  57. ->find();
  58. $arcurl = get_arcurl($row);
  59. $arcurl_home = get_arcurl($row, false);
  60. $channel = $row['channel'];
  61. $arcrank = $row['arcrank'];
  62. $seo_pseudo = tpCache('seo.seo_pseudo');
  63. $lang = input('param.lang/s', 'cn');
  64. $gourl = cookie('ENV_GOBACK_URL');
  65. $gourl = preg_replace('/<script([^\>]*)>([\s\S]+)<\/script>/i', '', urldecode($gourl));
  66. $addurl = request()->baseFile()."?m=admin&c=Archives&a=add&typeid=".$data['tid']."&lang=".$lang;
  67. $env_list_url = cookie('ENV_LIST_URL');
  68. $env_list_url = preg_replace('/<script([^\>]*)>([\s\S]+)<\/script>/i', '', urldecode($env_list_url));
  69. $listurl = $env_list_url."&typeid=".$data['tid'];
  70. if (empty($row['ifsystem'])) {
  71. $listurl .= "&channel=".$data['channel'];
  72. $addurl .= "&channel=".$data['channel'];
  73. }
  74. $env_is_uphtml = cookie('ENV_IS_UPHTML');
  75. $action_name = $push_zzbaidu_type = request()->action();
  76. $ctl_name = request()->controller();
  77. if ('add' == $action_name) {
  78. $msg = '发布';
  79. $msg1 = '继续发布';
  80. } else {
  81. $msg = '编辑';
  82. $msg1 = '发布';
  83. }
  84. if (0 > $row['click'] && -1 < $arcrank) {
  85. $push_zzbaidu_type = 'add';
  86. \think\Db::name('archives')
  87. ->where('aid', 'eq', $data['aid'])
  88. ->update(['click'=>mt_rand(500, 1000), 'update_time'=>getTime()]);
  89. }
  90. $zzbaidutoken = config('tpcache.sitemap_zzbaidutoken');//不为空则实时推送Url的token
  91. $bdminipro = \think\Db::name('weapp')->where(['code'=>'BdDiyminipro','status'=>1])->count();//是否安装百度小程序
  92. $seo_uphtml_after = cookie('ENV_UPHTML_AFTER');
  93. if (!empty($seo_uphtml_after)) {
  94. $seo_uphtml_after = json_decode($seo_uphtml_after, true);
  95. $alltypeid = getalltype($data['tid'],'id');
  96. }
  97. {/php}
  98. <div class="system-message">
  99. <div class="tit">
  100. <i class="iconfont e-complete"></i><span><b>成功{$msg}文档</b>请选择你的后续操作:</span>
  101. </div>
  102. <ul>
  103. <li><span>{$msg1}文档</span><a href="{$addurl|default=''}" style="display: none;">{$msg1}文档</a></li>
  104. <li><span>预览文档</span><a href="{$arcurl|default=''}" target="_blank" style="display: none;">预览文档</a></li>
  105. <li><span>更改文档</span><a href="{$Request.baseFile}?m=admin&c=Archives&a=edit&id={$data['aid']}&typeid={$data['tid']}&lang={$Request.param.lang|default='cn'}" style="display: none;">更改文档</a></li>
  106. <li><span>文档栏目列表</span><a href="{$listurl|default=''}" style="display: none;">文档栏目列表</a></li>
  107. {notempty name='$gourl'}
  108. <li><span>[返回原列表]</span><a href="{$gourl|default=''}" style="display: none;">[返回原列表]</a></li>
  109. {/notempty}
  110. </ul>
  111. {if condition="2 == $seo_pseudo && 1 != $env_is_uphtml"}
  112. <div class="buttom" id="tips">正在生成当前文档……请勿刷新!</div>
  113. <input type="hidden" id="is_uphtml" value="1">
  114. {else /}
  115. <input type="hidden" id="is_uphtml" value="0">
  116. {/if}
  117. </div>
  118. <script type="text/javascript">
  119. $(function(){
  120. var is_uphtml = $('#is_uphtml').val();
  121. if (0 == is_uphtml) {
  122. $('.system-message ul li').each(function(i,o){
  123. $(o).find('span').hide();
  124. $(o).find('a').show();
  125. })
  126. }
  127. });
  128. </script>
  129. {php}
  130. if (2 == $seo_pseudo && 1 != $env_is_uphtml) {
  131. cookie('ENV_IS_UPHTML', 1);
  132. {/php}
  133. <script type="text/javascript">
  134. /* 生成静态页面代码 */
  135. var aid = {$data['aid']|default=0};
  136. var arcrank = {$arcrank|default=0};
  137. var typeid = {$data['tid']|default=0};
  138. var method = "{$data['method']|default=''}";
  139. var ctl_name = "{$ctl_name}";
  140. var seo_uphtml_after_home = {$seo_uphtml_after['seo_uphtml_after_home']|default=0};
  141. var seo_uphtml_after_channel = {$seo_uphtml_after['seo_uphtml_after_channel']|default=0};
  142. var seo_uphtml_after_pernext = {$seo_uphtml_after['seo_uphtml_after_pernext']|default=0};
  143. if(aid > 0 && arcrank >= 0){
  144. $.ajax({
  145. url:__root_dir__+"/index.php?m=home&c=Buildhtml&a=upHtml&lang="+__lang__+"&id="+aid+"&t_id="+typeid+"&type=view&ctl_name="+ctl_name+"&_ajax=1",
  146. type:'POST',
  147. dataType:'json',
  148. data:{seo_uphtml_after_pernext:seo_uphtml_after_pernext},
  149. success:function(res){
  150. layer.closeAll();
  151. if (arcrank >= 0) {
  152. // 百度自动推送
  153. var zzbaidutoken = "{$zzbaidutoken|default=''}";
  154. if (zzbaidutoken != '') {
  155. push_zzbaidu('{$arcurl_home}', '{$push_zzbaidu_type}');
  156. }
  157. // 更新sitemap.xml地图
  158. update_sitemap('{$ctl_name}', '{$push_zzbaidu_type}');
  159. //百度小程序 API 提交 (自动推送)
  160. var bdminipro = {$bdminipro|default=0};
  161. if (bdminipro != 0) {
  162. push_bdminipro(aid, 1);
  163. }
  164. }
  165. uphtml_channel();
  166. },
  167. error: function(e){
  168. layer.closeAll();
  169. layer.alert('生成文档失败,请手工生成静态!', {icon: 5, title: false});
  170. },
  171. complete:function(){
  172. }
  173. });
  174. }else{
  175. $('#tips').html('');
  176. $('.system-message ul li').each(function(i,o){
  177. $(o).find('span').hide();
  178. $(o).find('a').show();
  179. });
  180. }
  181. /* end */
  182. </script>
  183. {php}
  184. } else if (in_array($seo_pseudo, [1,3])) {
  185. {/php}
  186. <script type="text/javascript">
  187. var aid = {$data['aid']|default=0};
  188. var arcrank = {$arcrank|default=0};
  189. if(aid > 0 && arcrank >= 0){
  190. // 百度自动推送
  191. var zzbaidutoken = "{$zzbaidutoken|default=''}";
  192. if (zzbaidutoken != '') {
  193. push_zzbaidu('{$arcurl_home}', '{$push_zzbaidu_type}');
  194. }
  195. // 更新sitemap.xml地图
  196. update_sitemap('{$ctl_name}', '{$push_zzbaidu_type}');
  197. //百度小程序 API 提交 (自动推送)
  198. var bdminipro = {$bdminipro|default=0};
  199. if (bdminipro != 0) {
  200. push_bdminipro(aid, 1);
  201. }
  202. }
  203. </script>
  204. {php}
  205. }
  206. {/php}
  207. {/case}
  208. {case value="0"}
  209. <div class="system-message">
  210. <h1 class="glyphicon glyphicon-exclamation-sign" style="color:#F33"></h1>
  211. <p class="error">
  212. {if condition="stristr($msg, '__html__')"}
  213. {$msg|str_replace='__html__','',###}
  214. {else /}
  215. {$msg|strip_tags=###}
  216. {/if}
  217. </p>
  218. <p class="detail"></p>
  219. <p class="jump">页面自动 <a id="href" href="{$url}" target="{empty name='$target'}_self{else /}{$target}{/empty}">跳转</a> 等待时间:<b id="wait">{$wait}</b>
  220. <script type="text/javascript">
  221. (function(){
  222. var wait = document.getElementById('wait'),
  223. href = document.getElementById('href').href,
  224. target = document.getElementById('href').target;
  225. var interval = setInterval(function(){
  226. var time = --wait.innerHTML;
  227. if(time <= 0) {
  228. if ('_parent' == target) {
  229. parent.location.href = href;
  230. } else {
  231. location.href = href;
  232. }
  233. clearInterval(interval);
  234. };
  235. }, 1000);
  236. })();
  237. </script>
  238. </p>
  239. </div>
  240. {/case}
  241. {/switch}
  242. <script type="text/javascript">
  243. // 发布/编辑文档后,生成相关栏目
  244. function uphtml_channel()
  245. {
  246. if(method === 'edit'){
  247. $('#tips').html('');
  248. $('.system-message ul li').each(function(i,o){
  249. $(o).find('span').hide();
  250. $(o).find('a').show();
  251. })
  252. return false;
  253. }
  254. if (0 == seo_uphtml_after_channel) {
  255. uphtml_index();
  256. return false;
  257. }
  258. $('#tips').html('生成文档成功,正在生成栏目……');
  259. setTimeout(function (){
  260. var alltypeid = {$alltypeid|json_encode};
  261. for (var i = 0; i < alltypeid.length; i++) {
  262. $.ajax({
  263. url:__root_dir__+"/index.php?m=home&c=Buildhtml&a=upHtml&lang="+__lang__+"&id="+aid+"&t_id="+alltypeid[i]+"&type=lists&ctl_name="+ctl_name+"&_ajax=1",
  264. type:'GET',
  265. dataType:'json',
  266. async: false,
  267. data:{},
  268. beforeSend:function(){
  269. },
  270. success:function(res){
  271. },
  272. error: function(e){
  273. layer.alert('生成当前栏目失败,请手工生成静态!', {icon: 5, title: false});
  274. }
  275. });
  276. }
  277. uphtml_index();
  278. }, 10);
  279. }
  280. // 发布/编辑文档后,生成首页
  281. function uphtml_index()
  282. {
  283. if (0 == seo_uphtml_after_home) {
  284. $('#tips').html('');
  285. $('.system-message ul li').each(function(i,o){
  286. $(o).find('span').hide();
  287. $(o).find('a').show();
  288. })
  289. return false;
  290. }
  291. var tips = '';
  292. if (1 == seo_uphtml_after_channel) {
  293. tips = '生成相关栏目成功,正在生成首页……';
  294. } else {
  295. tips = '生成文档成功,正在生成首页……';
  296. }
  297. $('#tips').html(tips);
  298. setTimeout(function (){
  299. $.ajax({
  300. url:__root_dir__+"/index.php?m=home&c=Buildhtml&a=upHtml&lang="+__lang__+"&type=index&_ajax=1",
  301. type:'GET',
  302. dataType:'json',
  303. data:{},
  304. beforeSend:function(){
  305. },
  306. success:function(res){
  307. $('#tips').html('');
  308. $('.system-message ul li').each(function(i,o){
  309. $(o).find('span').hide();
  310. $(o).find('a').show();
  311. })
  312. },
  313. error: function(e){
  314. layer.alert('生成网站首页失败,请手工生成网站首页!', {icon: 5, title: false});
  315. }
  316. });
  317. }, 10);
  318. }
  319. </script>
  320. </body>
  321. </html>