25 lines
910 B
PHP
Executable File
25 lines
910 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
namespace app\api\controller;
|
|
use app\api\logic\GoodsCategoryLogic;
|
|
class GoodsCategory extends ApiBase{
|
|
public $like_not_need_login = ['lists'];
|
|
|
|
/**
|
|
* Notes:获取商品分类
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
* @author:kiki
|
|
*/
|
|
public function lists(){
|
|
$client = $this->request->get('client',1);
|
|
$cateogry = GoodsCategoryLogic::categoryThirdTree($client);
|
|
$this->_success('获取成功',$cateogry);
|
|
}
|
|
} |