Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style="overflow-y: scroll; cursor: default; -moz-user-select: inherit;">
  3. <div id="toolTipLayer"
  4. style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  5. <div id="append_parent"></div>
  6. <div id="ajaxwaitid"></div>
  7. <div class="page">
  8. {include file="bar.htm" /}
  9. <div class="seo-right " id="seo_right_uphtml">
  10. <style>
  11. .seo-right41 {
  12. position: fixed;
  13. top: 70px;
  14. margin-top: 0px;
  15. /* top: 50%;
  16. margin-top: -185px;*/
  17. right: 30px;
  18. width: 350px;
  19. height: 270px;
  20. background-color: #fff;
  21. z-index: 666666;
  22. border: 1px solid #ddd;
  23. box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  24. border-radius: 4px;
  25. overflow: hidden;
  26. }
  27. .seo-html dt.tit {
  28. width: 60px;
  29. padding-left: 20px;
  30. }
  31. </style>
  32. <div class="page">
  33. <form method="get" id="html_handlepost" name="form2">
  34. <div class="ncap-form-default seo-html">
  35. <dl class="row">
  36. <dt class="tit">
  37. <label>整站页面</label>
  38. </dt>
  39. <dd class="opt w0">
  40. <a href="javascript:void(0);" id="up_site" class="ncap-btn ncap-btn-green">一键生成</a>
  41. <span class="err"></span>
  42. <p class="notic"></p>
  43. </dd>
  44. </dl>
  45. <dl class="row">
  46. <dt class="tit">
  47. <label>首页</label>
  48. </dt>
  49. <dd class="opt w0">
  50. <a href="javascript:void(0);" id="up_index" class="ncap-btn ncap-btn-green">一键生成</a>
  51. <span class="err"></span>
  52. <p class="notic"></p>
  53. </dd>
  54. </dl>
  55. <dl class="row">
  56. <dt class="tit">栏目页</dt>
  57. <dd class="opt w0">
  58. <select name="html_typeid" id="html_typeid" style="width: 150px;">
  59. <option value="0">所有栏目…</option>
  60. {$select_html}
  61. </select>
  62. &nbsp;<a href="javascript:void(0);" id="up_channel"
  63. class="ncap-btn ncap-btn-green">一键生成</a>
  64. <p class="notic"></p>
  65. </dd>
  66. </dl>
  67. <dl class="row">
  68. <dt class="tit">文档页</dt>
  69. <dd class="opt w0">
  70. <select name="html_arc_typeid" id="html_arc_typeid" style="width: 150px;">
  71. <option value="0">所有文档…</option>
  72. {$arc_select_html}
  73. </select>
  74. &nbsp;<a href="javascript:void(0);" id="up_article"
  75. class="ncap-btn ncap-btn-green">一键生成</a>
  76. <p class="notic"></p>
  77. </dd>
  78. </dl>
  79. </div>
  80. </form>
  81. </div>
  82. <script type="text/javascript">
  83. $(function() {
  84. //生成整站
  85. $("#up_site").click(function() {
  86. $.ajax({
  87. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$row.'','_ajax'=>1])}",
  88. type: 'POST',
  89. dataType: 'json',
  90. data: $('#handlepost').serialize(),
  91. beforeSend: function() {
  92. layer_loading('正在处理');
  93. },
  94. success: function(res) {
  95. layer.closeAll();
  96. if (0 == res.code) {
  97. showErrorAlert(res.msg);
  98. } else {
  99. var url = eyou_basefile + "?m=admin&c=Seom&a=site&lang=" +
  100. __lang__ + "&seo_html_arcdir={$row}";
  101. var index = layer.open({
  102. type: 2,
  103. title: '开始生成',
  104. area: ['500px', '300px'],
  105. fix: false,
  106. maxmin: false,
  107. content: url,
  108. end : function() {
  109. $.ajax({
  110. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$seo_html_arcdir.'','_ajax'=>1])}",
  111. type: 'POST',
  112. dataType: 'json',
  113. success:function(data){
  114. }
  115. });
  116. }
  117. });
  118. }
  119. },
  120. complete: function() {
  121. },
  122. error: function(e) {
  123. layer.closeAll();
  124. layer.alert(e.responseText, {
  125. icon: 5,
  126. title: false
  127. });
  128. }
  129. });
  130. })
  131. //生成首页
  132. $("#up_index").click(function() {
  133. $.ajax({
  134. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$row.'','_ajax'=>1])}",
  135. //'.$row.'
  136. type: 'POST',
  137. dataType: 'json',
  138. data: $('#handlepost').serialize(),
  139. beforeSend: function() {
  140. layer_loading('正在处理');
  141. },
  142. success: function(res) {
  143. if (0 == res.code) {
  144. layer.closeAll();
  145. showErrorAlert(res.msg);
  146. } else {
  147. var timestamp1 = Date.parse(new Date());
  148. $.ajax({
  149. url: __root_dir__ +
  150. "/index.php?m=home&c=Buildmhtml&a=buildIndex&lang=" +
  151. __lang__,
  152. type: 'POST',
  153. dataType: 'json',
  154. data: {
  155. _ajax: 1,
  156. seo_html_arcdir: "{$row}"
  157. },
  158. beforeSend: function() {
  159. // layer_loading('正在处理');
  160. // var index = layer.load(0, {shade: false});
  161. },
  162. success: function(data) {
  163. if (data.msg !== "") {
  164. layer.alert(data.msg, {
  165. icon: 5,
  166. title: false,
  167. closeBtn: 0
  168. }, function() {
  169. layer.closeAll();
  170. });
  171. } else {
  172. layer.closeAll();
  173. var timestamp2 = Date.parse(new Date());
  174. var timestamp3 = (timestamp2 - timestamp1) /
  175. 1000;
  176. if (timestamp3 < 1) timestamp3 = 1;
  177. layer.msg("生成完毕,共耗时:<font color='red'>" +
  178. timestamp3 + "</font> 秒", {
  179. icon: 1,
  180. time: 2000
  181. });
  182. }
  183. },
  184. complete: function() {
  185. // layer.alert(1, {icon: 5, title:false});
  186. },
  187. error: function(e) {
  188. layer.closeAll();
  189. showErrorAlert(e.responseText);
  190. }
  191. });
  192. }
  193. },
  194. complete: function() {
  195. $.ajax({
  196. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$seo_html_arcdir.'','_ajax'=>1])}",
  197. type: 'POST',
  198. dataType: 'json',
  199. success:function(data){
  200. }
  201. });
  202. },
  203. error: function(e) {
  204. layer.closeAll();
  205. showErrorAlert(e.responseText);
  206. }
  207. });
  208. })
  209. //生成栏目页
  210. $("#up_channel").click(function() {
  211. $.ajax({
  212. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$row.'','_ajax'=>1])}",
  213. type: 'POST',
  214. dataType: 'json',
  215. data: $('#handlepost').serialize(),
  216. beforeSend: function() {
  217. layer_loading('正在处理');
  218. },
  219. success: function(res) {
  220. layer.closeAll();
  221. if (0 == res.code) {
  222. showErrorAlert(res.msg);
  223. } else {
  224. var typeid = $("#html_typeid").val(); //栏目id
  225. var url = eyou_basefile + "?m=admin&c=Seom&a=channel&typeid=" +
  226. typeid + "&lang=" + __lang__ + "&seo_html_arcdir={$$row}";
  227. var index = layer.open({
  228. type: 2,
  229. title: '开始生成',
  230. area: ['500px', '300px'],
  231. fix: false,
  232. maxmin: false,
  233. content: url,
  234. end : function() {
  235. $.ajax({
  236. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$seo_html_arcdir.'','_ajax'=>1])}",
  237. type: 'POST',
  238. dataType: 'json',
  239. success:function(data){
  240. }
  241. });
  242. }
  243. });
  244. }
  245. },
  246. error: function(e) {
  247. layer.closeAll();
  248. showErrorAlert(e.responseText);
  249. }
  250. });
  251. })
  252. //生成文章页
  253. $("#up_article").click(function() {
  254. $.ajax({
  255. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$row.'','_ajax'=>1])}",
  256. type: 'POST',
  257. dataType: 'json',
  258. data: $('#handlepost').serialize(),
  259. beforeSend: function() {
  260. layer_loading('正在处理');
  261. },
  262. success: function(res) {
  263. layer.closeAll();
  264. if (0 == res.code) {
  265. showErrorAlert(res.msg);
  266. } else {
  267. var typeid = $("#html_arc_typeid").val(); //栏目id
  268. var url = eyou_basefile + "?m=admin&c=Seom&a=article&typeid=" +
  269. typeid + "&lang=" + __lang__ + "&seo_html_arcdir={$row}";
  270. var index = layer.open({
  271. type: 2,
  272. title: '开始生成',
  273. area: ['500px', '300px'],
  274. fix: false,
  275. maxmin: false,
  276. content: url,
  277. end : function() {
  278. $.ajax({
  279. url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$seo_html_arcdir.'','_ajax'=>1])}",
  280. type: 'POST',
  281. dataType: 'json',
  282. success:function(data){
  283. }
  284. });
  285. }
  286. });
  287. }
  288. },
  289. complete: function() {
  290. },
  291. error: function(e) {
  292. layer.closeAll();
  293. showErrorAlert(e.responseText);
  294. }
  295. });
  296. })
  297. })
  298. </script>
  299. </div>
  300. </div>
  301. <script type="text/javascript">
  302. // 判断输入框是否为空
  303. function checkForm() {
  304. layer_loading('正在处理');
  305. $('#post_form').submit();
  306. }
  307. //判断是否存在模板
  308. {if $templateerror ==1}
  309. layer.alert('mobile模板不存在!,请检查模板目录');
  310. {/if}
  311. //判断URL模式
  312. {if $conf_seo_pseudo ==1}
  313. layer.alert('SEO设置修改,URL模式: 静态页面 ');
  314. {/if}
  315. </script>
  316. {include file="footer.htm" /}