|
...
|
...
|
@@ -221,11 +221,11 @@ class CustomModuleContentLogic extends BaseLogic |
|
|
|
if(isset($param['image']) && !empty($param['image'])){
|
|
|
|
$param['image'] = str_replace_url($param['image']);
|
|
|
|
}
|
|
|
|
if(isset($param['video'])){
|
|
|
|
$param['video']['url'] = str_replace_url($param['video']['url']);
|
|
|
|
$param['video']['video_image'] = str_replace_url($param['video']['video_image']);
|
|
|
|
$param['video'] = Arr::a2s($param['video'] ?? []);
|
|
|
|
}
|
|
|
|
// if(isset($param['video'])){
|
|
|
|
// $param['video']['url'] = str_replace_url($param['video']['url']);
|
|
|
|
// $param['video']['video_image'] = str_replace_url($param['video']['video_image']);
|
|
|
|
// $param['video'] = Arr::a2s($param['video'] ?? []);
|
|
|
|
// }
|
|
|
|
return $this->success($param);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|