|
...
|
...
|
@@ -212,10 +212,8 @@ class TicketUploadDataLogic extends BaseLogic |
|
|
|
'short_description'=>$info['text']['short_description'] ?? '',
|
|
|
|
'images'=>$info['text']['images'] ?? '',
|
|
|
|
]);
|
|
|
|
@file_put_contents(storage_path('logs/lyh_error.log'), var_export($response, true) . PHP_EOL, FILE_APPEND);
|
|
|
|
if ($response->successful()) {
|
|
|
|
$result = $response->json(); // 获取 JSON 响应体
|
|
|
|
@file_put_contents(storage_path('logs/lyh_error.log'), var_export($result, true) . PHP_EOL, FILE_APPEND);
|
|
|
|
if ($result && $result['status'] == 200) {
|
|
|
|
return $this->success();
|
|
|
|
}
|
...
|
...
|
|