【触客宝】 修复同步未删除设备的bug

This commit is contained in:
wong
2025-05-09 15:08:32 +08:00
parent 45e133e8a4
commit d5c54c3ff5
2 changed files with 2 additions and 2 deletions

View File

@@ -379,7 +379,7 @@ if (!function_exists('handleApiResponse')) {
if($response == '无效路径或登录状态失效'){
Cache::rm('system_refresh_token');
Cache::rm('system_authorization_token');
AuthService::getSystemAuthorization();
//AuthService::getSystemAuthorization();
}
return $decoded;

View File

@@ -62,7 +62,7 @@ class DeviceListJob
]);
// 调用设备列表获取方法传入isDel参数
$result = $deviceController->getlist($pageIndex, $pageSize, true, $isDel);
$result = $deviceController->getlist(['pageIndex' => $pageIndex, 'pageSize' => $pageSize], true, $isDel);
$response = json_decode($result, true);
if ($response['code'] == 200) {