123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <!doctype html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <link rel="stylesheet" type="text/css" href="__PUBLIC__/plugins/bootstrap/css/bootstrap.min.css?v={$version}">
- <script type="text/javascript">
- var __root_dir__ = "__ROOT_DIR__";
- var __lang__ = "{$admin_lang}";
- </script>
- <script type="text/javascript" src="__SKIN__/js/jquery.js"></script>
- <script type="text/javascript" src="__PUBLIC__/plugins/layer-v3.1.0/layer.js"></script>
- </head>
- <style>
- .gray-bg {
- background-color: #f3f3f4;
- }
- .wrapper-content {
- padding: 20px;
- }
- .ibox {
- clear: both;
- margin-bottom: 25px;
- margin-top: 0;
- padding: 0;
- }
- .ibox-content {
- clear: both;
- background-color: #ffffff;
- color: inherit;
- padding: 15px 20px 20px 20px;
- border-color: #e7eaec;
- -webkit-border-image: none;
- -o-border-image: none;
- border-image: none;
- border-style: solid solid none;
- border-width: 1px 0px;
- }
- .progress {
- height: 20px;
- margin-bottom: 20px;
- overflow: hidden;
- background-color: #f5f5f5;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
- box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
- }
- .progress-bar{
- height: 100%;
- }
- .progress-bar-success {
- background-color: #1c84c6;
- }
- .ncap-btn-green {
- margin: 20px auto 0;
- width: 100px;
- height: 36px;
- line-height: 36px;
- background-color: #4fc0e8;
- border:1px solid #3aa8cf;
- text-align: center;
- vertical-align: middle;
- display: block;
- padding: 0px 9px;
- border-radius: 3px;
- cursor: pointer;
- color: #fff;
- font-size: 13px;
- }
- a.ncap-btn-green:hover{
- background-color:#3ab0da;
- color: #fff;
- text-decoration: none;
- }
- </style>
- <body class="gray-bg">
- <div class="ibox float-e-margins">
-
- <div class="ibox-content">
- <div class="progress progress-striped active">
- <div class="progress-bar progress-bar-success" role="progressbar"
- aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width:0%">
- </div>
- </div>
- <div style="text-align:center" class="success">
- <div class="finash" style="">
- <span><font id="title">正在生成</font><span class="filepath"></span>,</span>
- 已完成<span class="percent" style="color:#ff0000 ;font-size:14px;">0</span>%
- </div>
- </div>
- </div>
- <a href="javascript:void(0);" id="a_close_pop" class="ncap-btn-green" style="display: none;">关闭本窗口</a>
- <div class="ibox-content" id="error_msg" style="display: none">
- </div>
- </div>
- <script type="text/javascript">
- $('#a_close_pop').hide();
- //请求获取全部数据和页数
- var channelfid = articlefid = 0; //本次执行的下标
- var allpagetotal = channelpagetotal = articlepagetotal = 0;
- var achieve = channelachieve = articleachieve = 0;
- var msg = "";
- var timestamp1 = Date.parse(new Date());
- function sendIndex(){
- $.ajax({
- url:__root_dir__+"/index.php?m=home&c=Buildmhtml&a=buildIndexAll&lang="+__lang__,
- type:'POST',
- dataType:'json',
- data:{_ajax:1},
- success:function(res){
- findex = res.data.typeid;
- achieve = res.data.achievepage;
- allpagetotal = res.data.allpagetotal;
- channelpagetotal = res.data.channelpagetotal;
- articlepagetotal = res.data.articlepagetotal;
- msg += res.msg;
- progress = ((achieve/allpagetotal)*100).toFixed(1);
- $("#title").html('成功创建首页');
- $(".filepath").html('');
- $(".progress-bar").css('width',progress+'%');
- $(".percent").text(progress);
- if (achieve === 1){
- if (msg !== ""){
- $("#error_msg").show();
- $("#error_msg").prepend(msg);
- }
- sendChannel();
- }
- },
- error:function(e){
- parent.layer.alert(e.responseText, {icon: 5, title:false});
- }
- });
- }
-
- function sendChannel(){
- $.ajax({
- url:__root_dir__+"/index.php?m=home&c=Buildmhtml&a=buildChannel&lang="+__lang__,
- type:'POST',
- dataType:'json',
- data:{'id':0,'findex':articlefid,'achieve':channelachieve,_ajax:1},
- beforeSend:function(){
- },
- success:function(res){
- articlefid = res.data.findex;
- channelachieve = res.data.achievepage;
- msg += res.msg;
- progress = (((achieve+channelachieve)/allpagetotal)*100).toFixed(1);
- $("#title").html('成功创建栏目:');
- $(".filepath").html(res.data.findex);
- $(".progress-bar").css('width',progress+'%');
- $(".percent").text(progress);
- if (channelachieve === channelpagetotal){
- achieve = achieve + channelachieve;
- if (msg !== ""){
- $("#error_msg").show();
- $("#error_msg").prepend(msg);
- }
- sendArticle();
- return false;
- }
- sendChannel();
- },
- error:function(e){
- parent.layer.alert(e.responseText, {icon: 5, title:false});
- }
- });
- }
-
- function sendArticle() {
- $.ajax({
- url:__root_dir__+"/index.php?m=home&c=Buildmhtml&a=buildArticle&lang="+__lang__,
- type:'POST',
- dataType:'json',
- data:{'id':0,'findex':channelfid,'achieve':articleachieve,_ajax:1},
- success:function(res){
- channelfid = res.data.findex;
- articleachieve = res.data.achievepage;
- msg += res.msg;
- progress = (((achieve+articleachieve)/allpagetotal)*100).toFixed(1);
- $("#title").html('成功创建文档数:');
- $(".filepath").html(channelfid);
- $(".progress-bar").css('width',progress+'%');
- $(".percent").text(progress);
- if (articleachieve === articlepagetotal){
- var timestamp2 = Date.parse(new Date());
- var timestamp3 = (timestamp2 - timestamp1) / 1000;
- if (timestamp3 < 1) timestamp3 = 1;
- $(".finash").remove();
- $(".progress-bar").css('width','100%');
- $(".progress").removeClass('progress-striped ').removeClass('active');
- $(".success").html("生成完成,共耗时:<font color='red'>"+timestamp3+"</font> 秒");
- $('#a_close_pop').show();
- if (msg !== ""){
- $("#error_msg").show();
- $("#error_msg").prepend(msg);
- }
- return false;
- }
- sendArticle();
- },
- error:function(e){
- parent.layer.alert(e.responseText, {icon: 5, title:false});
- }
- });
- }
- sendIndex();
- </script>
-
-
-
-
- <script type="text/javascript">
- $('#a_close_pop').on('click',function(){
- $.ajax({
- url: "{:url('Seom/handle', ['is_buildhtml'=>1,'seo_html_arcdir'=>''.$seo_html_arcdir.'','_ajax'=>1])}",
- type: 'POST',
- dataType: 'json',
- success: function(data) {
- parent.layer.closeAll();
- }
- });
-
- });
-
-
- </script>
- </body>
- </html>
-
-
|