$params['name'], 'image' => $params['image'] ? FileService::setFileUrl($params['image']) : '', 'image_ext' => $params['image_ext'], 'link' => $params['link'], 'loca' => $params['loca'], 'is_show' => $params['is_show'], 'sort' => $params['sort'], 'langs' => json_encode($langs, JSON_UNESCAPED_UNICODE), ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 编辑轮播图 * @param array $params * @return bool * @author BD * @date 2024/03/16 17:34 */ public static function edit(array $params): bool { Db::startTrans(); try { $langs = $params['langs']; foreach ($langs as &$content_lang) { $content_lang['image'] = FileService::setFileUrl($content_lang['image']); } DecorateSwiper::where('id', $params['id'])->update([ 'name' => $params['name'], 'image' => $params['image'] ? FileService::setFileUrl($params['image']) : '', 'image_ext' => $params['image_ext'], 'link' => $params['link'], 'loca' => $params['loca'], 'is_show' => $params['is_show'], 'sort' => $params['sort'], 'langs' => json_encode($langs, JSON_UNESCAPED_UNICODE), ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 删除轮播图 * @param array $params * @return bool * @author BD * @date 2024/03/16 17:34 */ public static function delete(array $params): bool { return DecorateSwiper::destroy($params['id']); } /** * @notes 获取轮播图详情 * @param $params * @return array * @author BD * @date 2024/03/16 17:34 */ public static function detail($params): array { return DecorateSwiper::findOrEmpty($params['id'])->toArray(); } }