fixed iamge 401

This commit is contained in:
Edward Yang 2022-07-18 11:52:04 +08:00
parent 6124ab3780
commit e53f331381
1 changed files with 15 additions and 0 deletions

View File

@ -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;
}
/**
* 处理链接
*