作者 李宇航

合并分支 'lyh-server' 到 'master'

变更数据



查看合并请求 !3225
... ... @@ -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();
}
... ...