service = new CollectService(); } /** * 列表 * @return array */ public function index(){ $params = request()->all(); return $this->service->getDataList($params); } /** * 收藏 * @return array */ public function collect(){ return $this->service->collect($this->userId); } }