request->get('type',1); $cityId = $this->request->get('city_id',0); $detail = (new DecorateLogic())->page($type,$cityId); return $this->success('',$detail); } /** * @notes 获取装修风格 * @return \think\response\Json * @author cjhao * @date 2024/10/8 15:14 */ public function style() { $detail = (new DecorateLogic())->style(); return $this->success('',$detail); } /** * @notes 底部菜单 * @return \think\response\Json * @author cjhao * @date 2024/10/8 15:57 */ public function tabbar() { $detail = (new DecorateLogic())->tabbar(); return $this->success('',$detail); } }