You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
56 lines
1.7 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\other;
|
|
|
|
|
|
use app\dao\other\CategoryDao;
|
|
use app\services\BaseServices;
|
|
|
|
/**
|
|
* Class CategoryServices
|
|
* @package app\services\other
|
|
*/
|
|
class CategoryServices extends BaseServices
|
|
{
|
|
|
|
protected $cacheName = 'crmeb_cate';
|
|
|
|
/**
|
|
* CategoryServices constructor.
|
|
* @param CategoryDao $dao
|
|
*/
|
|
public function __construct(CategoryDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
|
|
/**
|
|
* 获取分类列表
|
|
* @param array $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getCateList(array $where = [], array $field = ['*'])
|
|
{
|
|
[$page, $limit] = $this->getPageValue();
|
|
$data = $this->dao->getCateList($where, $page, $limit, $field);
|
|
if ($where['owner_id'] == 0) {
|
|
array_unshift($data, ['id' => 0, 'name' => '系统话术', 'sort' => 0]);
|
|
}
|
|
$count = $this->dao->count($where);
|
|
return compact('data', 'count');
|
|
}
|
|
|
|
|
|
}
|
|
|