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