116 lines
3.6 KiB
PHP
116 lines
3.6 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\controller\admin\v1\diy;
|
||
|
||
|
||
use app\controller\admin\AuthController;
|
||
use app\services\diy\DiyServices;
|
||
use app\services\diy\PageCategoryServices;
|
||
use app\services\diy\PageLinkServices;
|
||
use app\services\product\category\StoreProductCategoryServices;
|
||
use think\annotation\Inject;
|
||
use think\facade\App;
|
||
|
||
/**
|
||
* Class PageLink
|
||
* @package app\controller\admin\v1\diy
|
||
*/
|
||
class PageLink extends AuthController
|
||
{
|
||
|
||
/**
|
||
* @var PageLinkServices
|
||
*/
|
||
#[Inject]
|
||
protected PageLinkServices $services;
|
||
|
||
/**
|
||
* 获取页面链接分类
|
||
* @return mixed
|
||
*/
|
||
public function getCategory(PageCategoryServices $services)
|
||
{
|
||
return $this->success($services->getCategroyList());
|
||
}
|
||
|
||
/**
|
||
* 获取页面链接
|
||
* @param $cate_id
|
||
* @return mixed
|
||
*/
|
||
public function getLinks($cate_id, PageCategoryServices $pageCategoryServices)
|
||
{
|
||
if (!$cate_id) return $this->fail('缺少参数');
|
||
$category = $pageCategoryServices->get((int)$cate_id);
|
||
if (!$category) {
|
||
return $this->fail('页面分类不存在');
|
||
}
|
||
switch ($category['type']) {
|
||
case 'special':
|
||
/** @var DiyServices $diyServices */
|
||
$diyServices = app()->make(DiyServices::class);
|
||
$data = $diyServices->getDiyList(['type' => [1, 2]]);
|
||
break;
|
||
case 'product_category':
|
||
[$pid] = $this->request->getMore([
|
||
['pid', 0]
|
||
], true);
|
||
/** @var StoreProductCategoryServices $storeCategoryServices */
|
||
$storeCategoryServices = app()->make(StoreProductCategoryServices::class);
|
||
$data = $storeCategoryServices->getList(['pid' => $pid, 'is_show' => 1]);
|
||
break;
|
||
default:
|
||
$data = $this->services->getLinkList(['cate_id' => $cate_id]);
|
||
break;
|
||
}
|
||
return $this->success($data);
|
||
}
|
||
|
||
/**
|
||
* 保存链接
|
||
* @param $cate_id
|
||
* @param PageCategoryServices $pageCategoryServices
|
||
* @return mixed
|
||
*/
|
||
public function saveLink($cate_id, PageCategoryServices $pageCategoryServices)
|
||
{
|
||
$data = $this->request->getMore([
|
||
['name', ''],
|
||
['url', '']
|
||
]);
|
||
if (!$cate_id || !$data['name'] || !$data['url']) return $this->fail('缺少参数');
|
||
$category = $pageCategoryServices->get((int)$cate_id);
|
||
if (!$category) {
|
||
return $this->fail('页面分类不存在');
|
||
}
|
||
$data['cate_id'] = $cate_id;
|
||
$data['add_time'] = time();
|
||
if (!$this->services->save($data)) {
|
||
return $this->fail('添加失败');
|
||
}
|
||
return $this->success('添加成功');
|
||
}
|
||
|
||
/**
|
||
* 删除链接
|
||
* @param $id
|
||
* @return mixed
|
||
*/
|
||
public function del($id)
|
||
{
|
||
if (!$id) return $this->fail('参数错误');
|
||
$this->services->del($id);
|
||
return $this->success('删除成功!');
|
||
}
|
||
|
||
}
|