|
|
@@ -42,11 +42,14 @@ class U8Deal
|
|
|
}elseif ($path == ""){
|
|
|
$type = RecordTable::type_three;
|
|
|
}
|
|
|
+ $return_data = "";
|
|
|
+ if(! empty($return['data']) && is_array($return['data'])) $return_data = json_encode($return['data']);
|
|
|
RecordTable::insert([
|
|
|
'msg' => $return['msg'] ?? "",
|
|
|
'data' => json_encode($request->all()),
|
|
|
'crt_time' => time(),
|
|
|
'type' => $type,
|
|
|
+ 'return_data' => $return_data,
|
|
|
]);
|
|
|
}
|
|
|
}
|