mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改任务提示
This commit is contained in:
parent
cb4f860d2f
commit
a46d82f522
@ -93,13 +93,9 @@ class Fans extends Command
|
||||
$next = null;
|
||||
}
|
||||
}
|
||||
if ($done > 0) {
|
||||
$this->output->comment('微信用户数据获取完成');
|
||||
} else {
|
||||
$this->output->comment('未获取到微信用户数据');
|
||||
}
|
||||
$this->output->comment($done > 0 ? '微信用户数据获取完成' : '未获取到微信用户数据');
|
||||
$this->output->newLine();
|
||||
return "共获取{$done}个用户数据";
|
||||
return "共获取 {$done} 个用户数据";
|
||||
}
|
||||
|
||||
/**
|
||||
@ -130,9 +126,9 @@ class Fans extends Command
|
||||
}
|
||||
$this->output->newLine();
|
||||
if (empty($result['total'])) {
|
||||
return ',其中黑名单0人';
|
||||
return ',其中黑名单 0 人';
|
||||
} else {
|
||||
return ",其中黑名单{$result['total']}人";
|
||||
return ",其中黑名单 {$result['total']} 人";
|
||||
}
|
||||
}
|
||||
|
||||
@ -166,7 +162,7 @@ class Fans extends Command
|
||||
$this->output->comment('未获取到微信用户标签数据');
|
||||
}
|
||||
$this->output->newLine();
|
||||
return ",获取到{$done}个标签。";
|
||||
return ",获取到 {$done} 个标签。";
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user