mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-29 07:00:19 +00:00
87 lines
2.3 KiB
PHP
87 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2017/12/12
|
|
*/
|
|
|
|
namespace app\models\store;
|
|
|
|
use crmeb\basic\BaseModel;
|
|
use think\facade\Cache;
|
|
|
|
/**
|
|
* TODO 产品分类Model
|
|
* Class StoreCategory
|
|
* @package app\models\store
|
|
*/
|
|
class StoreCategory extends BaseModel
|
|
{
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'store_category';
|
|
|
|
public static function pidByCategory($pid, $field = '*', $limit = 0)
|
|
{
|
|
$model = self::where('pid', $pid)->where('is_show', 1)->order('sort desc,id desc')->field($field);
|
|
if ($limit) $model->limit($limit);
|
|
return $model->select();
|
|
}
|
|
|
|
public static function pidBySidList($pid)
|
|
{
|
|
return self::where('pid', $pid)->field('id,cate_name,pid')->select();
|
|
}
|
|
|
|
public static function cateIdByPid($cateId)
|
|
{
|
|
return self::where('id', $cateId)->value('pid');
|
|
}
|
|
|
|
/*
|
|
* 获取一级和二级分类
|
|
* @return array
|
|
* */
|
|
public static function getProductCategory($expire = 800)
|
|
{
|
|
if (Cache::has('parent_category')) {
|
|
return Cache::get('parent_category');
|
|
} else {
|
|
$parentCategory = self::pidByCategory(0, 'id,cate_name')->toArray();
|
|
foreach ($parentCategory as $k => $category) {
|
|
$category['child'] = self::pidByCategory($category['id'], 'id,cate_name,pic')->toArray();
|
|
$parentCategory[$k] = $category;
|
|
}
|
|
Cache::set('parent_category', $parentCategory, $expire);
|
|
return $parentCategory;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* TODO 获取首页展示的二级分类 排序默认降序
|
|
* @param string $field
|
|
* @param int $limit
|
|
* @return false|\PDOStatement|string|\think\Collection
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function byIndexList($limit = 4, $field = 'id,cate_name,pid,pic')
|
|
{
|
|
return self::where('pid', '>', 0)->where('is_show', 1)->field($field)->order('sort DESC')->limit($limit)->select();
|
|
}
|
|
|
|
public function children()
|
|
{
|
|
return $this->hasMany(self::class, 'pid','id');
|
|
}
|
|
|
|
} |