修改任务提示

This commit is contained in:
Anyon 2020-12-17 18:23:38 +08:00
parent a46d82f522
commit 8f35be046c

View File

@ -119,11 +119,7 @@ class Fans extends Command
$this->setQueueProgress("--> 共计同步微信黑名单{$result['total']}");
$next = $result['total'] > $done ? $result['next_openid'] : null;
}
if ($done > 0) {
$this->output->comment('黑名单的微信用户更新成功');
} else {
$this->output->comment('未获取到黑名单微信用户哦');
}
$this->output->comment($done > 0 ? '黑名单的微信用户更新成功' : '未获取到黑名单微信用户哦');
$this->output->newLine();
if (empty($result['total'])) {
return ',其中黑名单 0 人';
@ -156,13 +152,9 @@ class Fans extends Command
$this->app->db->name('WechatFansTags')->where(['appid' => $appid])->delete();
$this->app->db->name('WechatFansTags')->insertAll($list['tags']);
}
if ($done > 0) {
$this->output->comment('微信用户标签数据获取完成');
} else {
$this->output->comment('未获取到微信用户标签数据');
}
$this->output->comment($done > 0 ? '微信用户标签数据获取完成' : '未获取到微信用户标签数据');
$this->output->newLine();
return ",获取到 {$done} 个标签";
return ",获取到 {$done} 个标签";
}
}