Files
zzp-server/app/adminapi/logic/decorate/DecorateSwiperLogic.php
2026-01-19 14:19:22 +08:00

135 lines
3.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\logic\decorate;
use app\common\model\decorate\DecorateSwiper;
use app\common\logic\BaseLogic;
use think\facade\Db;
use app\common\service\FileService;
/**
* 轮播图逻辑
* Class DecorateSwiperLogic
* @package app\adminapi\logic\decorate
*/
class DecorateSwiperLogic extends BaseLogic
{
/**
* @notes 添加轮播图
* @param array $params
* @return bool
* @author BD
* @date 2024/03/16 17:34
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
$langs = $params['langs'];
foreach ($langs as &$content_lang) {
$content_lang['image'] = FileService::setFileUrl($content_lang['image']);
}
DecorateSwiper::create([
'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 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();
}
}