model = new \app\common\model\Product; } /** * 产品列表 * */ public function infolist() { $info = $this->model->select(); if($info) { $this->success(__('获取成功!'), ["data"=>$info]); } else { $this->error(__('获取失败!')); } } /** * 产品详情 */ public function infodetail() { $id = $this->request->request('id'); $info = $this->model->where("id","=",$id)->find(); if($info) { $this->success(__('获取成功!'), ["data"=>$info]); } else { $this->error(__('获取失败!')); } } }