fixed iamge 401
This commit is contained in:
parent
6124ab3780
commit
e53f331381
|
|
@ -42,6 +42,8 @@ class DesignService
|
|||
{
|
||||
if ($moduleCode == 'slideshow') {
|
||||
return self::handleSlideShow($content);
|
||||
} elseif ($moduleCode == 'image_401') {
|
||||
return self::handleImage401($content);
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
|
|
@ -74,6 +76,19 @@ class DesignService
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* 处理 SlideShow 模块
|
||||
*
|
||||
* @param $content
|
||||
* @return array
|
||||
* @throws \Exception
|
||||
*/
|
||||
private static function handleImage401($content): array
|
||||
{
|
||||
return $content;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 处理链接
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue