Merge pull request !144 from 赵世界/develop
This commit is contained in:
赵世界 2023-01-29 06:48:33 +00:00 committed by Gitee
commit 6345152460
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 4 additions and 2 deletions

View File

@ -177,7 +177,9 @@ class ShopsController extends Controller
$res = $business->queryGroup();
if (isset($res['ktt_group_query_list_response'])) {
foreach ($res['ktt_group_query_list_response']['activity_list'] as $activity) {
$business->downloadGoodsListAndBind($activity['activity_no'], $activity['title']);
if (0 === $activity['is_help_sell']) {
$business->downloadGoodsListAndBind($activity['activity_no'], $activity['title']);
}
}
}

View File

@ -87,7 +87,7 @@ class Groups
$appendParams = [
'end_update_time' => $time,
'page' => 1,
'size' => 10,
'size' => 100,
'start_update_time' => $time - 3600 * 24 * 6 * 1000
];