|
|
|
@ -935,7 +935,12 @@ if ($('.botstats').length > 0) {
@@ -935,7 +935,12 @@ if ($('.botstats').length > 0) {
|
|
|
|
|
if (data.code != 1) { |
|
|
|
|
console.warn('Bot stats获取失败', data.msg); |
|
|
|
|
}else { |
|
|
|
|
$('.botstats .progress-bar').css('width', data.percent + '%').text('扫描已完成 ' + data.percent + '%'); |
|
|
|
|
$('.botstats .progress-bar').css('width', data.percent + '%'); |
|
|
|
|
if (data.percent >= 10) { |
|
|
|
|
$('.botstats .progress-bar').text('扫描已完成 ' + data.percent + '%'); |
|
|
|
|
}else { |
|
|
|
|
$('.botstats .progress-bar').text(data.percent + '%'); |
|
|
|
|
} |
|
|
|
|
if (data.percent < 100) { |
|
|
|
|
$('.btnStartScan').prop('disabled', true); |
|
|
|
|
$('.botstats').removeClass('hide'); |
|
|
|
|