1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- // +----------------------------------------------------------------------
- // | Niucloud-admin 企业快速开发的saas管理平台
- // +----------------------------------------------------------------------
- // | 官方网址:https://www.niucloud.com
- // +----------------------------------------------------------------------
- // | niucloud团队 版权所有 开源版本可自由商用
- // +----------------------------------------------------------------------
- // | Author: Niucloud Team
- // +----------------------------------------------------------------------
- namespace app\service\admin\diy;
- use app\model\sys\SysConfig;
- use app\service\core\diy\CoreDiyConfigService;
- use core\base\BaseAdminService;
- use think\Model;
- /**
- * 自定义页面相关配置服务层
- * Class DiyConfigService
- * @package app\service\admin\diy
- */
- class DiyConfigService extends BaseAdminService
- {
- /**
- * 获取底部导航列表
- * @param array $params
- * @return array|mixed
- */
- public function getBottomList($params = [])
- {
- $list = ( new CoreDiyConfigService() )->getBottomList($params);
- return $list;
- }
- /**
- * 获取底部导航配置
- * @return array
- */
- public function getBottomConfig()
- {
- return ( new CoreDiyConfigService() )->getBottomConfig($this->site_id);
- }
- /**
- * 底部导航配置
- * @param $data
- * @return SysConfig|bool|Model
- */
- public function setBottomConfig($data)
- {
- return ( new CoreDiyConfigService() )->setBottomConfig($this->site_id, $data);
- }
- /**
- * 设置启动页
- * @param $data
- * @return SysConfig|bool|Model
- */
- public function setStartUpPageConfig($data)
- {
- return ( new CoreDiyConfigService() )->setStartUpPageConfig($this->site_id, $data);
- }
- /**
- * 获取启动页配置
- * @param $name
- * @return array
- */
- public function getStartUpPageConfig($name)
- {
- return ( new CoreDiyConfigService() )->getStartUpPageConfig($this->site_id, $name);
- }
- }
|