| 
									
										
										
										
											2023-08-10 14:59:52 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | namespace app\api\controller; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use app\common\basics\Api; | 
					
						
							|  |  |  | use app\common\server\JsonServer; | 
					
						
							|  |  |  | use app\api\logic\GoodsCategoryLogic; | 
					
						
							|  |  |  | use think\facade\Validate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class GoodsCategory extends Api | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-09-26 10:38:35 +08:00
										 |  |  |     public $like_not_need_login = ['getLevelOneList', 'getListByLevelOne', 'getThirdListByKeyword']; | 
					
						
							| 
									
										
										
										
											2023-08-10 14:59:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 获取一级分类列表 | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getLevelOneList() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if($this->request->isGet()) { | 
					
						
							|  |  |  |             $list = GoodsCategoryLogic::getLevelOneList(); | 
					
						
							|  |  |  |             return JsonServer::success('获取成功', $list); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return JsonServer::error('请求方式错误'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 获取一级分类下的后代分类 | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getListByLevelOne() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if($this->request->isGet()) { | 
					
						
							|  |  |  |             $id = $this->request->get('id', '', 'trim'); | 
					
						
							|  |  |  |             $validate = Validate::rule('id', 'require|integer|gt:0'); | 
					
						
							|  |  |  |             if(!$validate->check(['id'=>$id])) { | 
					
						
							|  |  |  |                 return JsonServer::error($validate->getError()); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $list = GoodsCategoryLogic::getListByLevelOne($id); | 
					
						
							|  |  |  |             return JsonServer::success('获取成功', $list); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return JsonServer::error('请求方式错误'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-09-26 10:38:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 获取一级分类下的后代分类 | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getThirdListByKeyword() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if($this->request->isGet()) { | 
					
						
							|  |  |  |             $keyword = input('keyword/s', ''); | 
					
						
							|  |  |  |             if (empty($keyword)) { | 
					
						
							|  |  |  |                 return JsonServer::error('请输入关键词'); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $list = GoodsCategoryLogic::getThirdListByKeyword($keyword); | 
					
						
							|  |  |  |             return JsonServer::success('获取成功', $list); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return JsonServer::error('请求方式错误'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-08-10 14:59:52 +08:00
										 |  |  | } |