dataLists((new ShopLists())); } /** * @notes 门店详情 * @return \think\response\Json * @author cjhao * @date 2024/10/18 01:54 */ public function detail(){ $params = $this->request->get(); $detail = (new ShopLogic())->detail($params,$this->userInfo); return $this->success('',$detail); } /** * @notes 分类列表 * @return \think\response\Json * @author cjhao * @date 2024/10/28 15:26 */ public function commentCategory() { $shopId = $this->request->get('shop_id'); $lists = (new ShopLogic())->commentCategory($shopId); return $this->success('',$lists); } /** * @notes 分类列表 * @return \think\response\Json * @author cjhao * @date 2024/10/28 16:06 */ public function commentLists() { return $this->dataLists((new ShopCommentGoodsLists())); } }