Commit e0bf6d38 by haojie

1

parent b159ab5d
......@@ -55,8 +55,6 @@ public function task_callback(Request $request)
{
$data = request()->input();
$user = $request->user();
Log::info('下面');
Log::info($user);
$res = app(TaskService::class)->task_callback($user->id, $data);
return $this->success('success', $res);
}
......
......@@ -204,7 +204,7 @@ function task_callback($user_id, $data = [])
foreach ($res as $item) {
$list[] = [
'img' => $item->result_img,
'id' => $res->id,
'id' => $item->id,
'split_img' => ''
];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment