|
|
|
@ -937,6 +937,7 @@ if ($('.botstats').length > 0) {
@@ -937,6 +937,7 @@ if ($('.botstats').length > 0) {
|
|
|
|
|
}else { |
|
|
|
|
$('.botstats .progress-bar').css('width', data.percent + '%').text('扫描已完成 ' + data.percent + '%'); |
|
|
|
|
if (data.percent < 100) { |
|
|
|
|
$('.btnStartScan').prop('disabled', true); |
|
|
|
|
$('.botstats').removeClass('hide'); |
|
|
|
|
$('.botstats .progress-bar').removeClass('progress-bar-success'); |
|
|
|
|
setTimeout(refreshBotStats, 10000); |
|
|
|
@ -944,6 +945,7 @@ if ($('.botstats').length > 0) {
@@ -944,6 +945,7 @@ if ($('.botstats').length > 0) {
|
|
|
|
|
$('.botstats .progress-bar').addClass('progress-bar-success'); |
|
|
|
|
setTimeout(function() { |
|
|
|
|
$('.botstats').addClass('hide'); |
|
|
|
|
$('.btnStartScan').removeAttr('disabled'); |
|
|
|
|
}, 3000); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -954,3 +956,21 @@ if ($('.botstats').length > 0) {
@@ -954,3 +956,21 @@ if ($('.botstats').length > 0) {
|
|
|
|
|
|
|
|
|
|
refreshBotStats(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* MainBot扫描启动 */ |
|
|
|
|
$('.btnStartScan').click(function() { |
|
|
|
|
$.ajax({ |
|
|
|
|
url: '/site/startbot', |
|
|
|
|
method: 'POST', |
|
|
|
|
dataType: 'json' |
|
|
|
|
}).done(function(data) { |
|
|
|
|
if (data.code != 1) { |
|
|
|
|
alert('文件扫描开始失败:' + data.msg); |
|
|
|
|
}else { |
|
|
|
|
location.reload(); |
|
|
|
|
} |
|
|
|
|
}).fail(function(jqXHR, textStatus, errorThrown) { |
|
|
|
|
alert('文件扫描开始失败,错误信息:' + errorThrown); |
|
|
|
|
console.error('文件扫描开始失败,错误信息:' + errorThrown); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|