repository = $repository; } /** * @return mixed * @author Qinii */ public function create() { $params = $this->request->params(['type_id', 'type']); $params['uid'] = $this->request->uid(); if (!$params['type_id']) return app('json')->fail('参数丢失'); if (!in_array($params['type'], [0,1,2,3,4,10])) return app('json')->fail('参数错误'); if (!$this->repository->fieldExists($params)) return app('json')->fail('数据不存在'); if ($this->repository->getUserRelation($params,$this->request->uid())) return app('json')->fail('您已经关注过了'); $params['uid'] = $this->request->uid(); $this->repository->create($params); return app('json')->success('关注成功'); } /** * @return mixed * @author Qinii */ public function productList() { [$page, $limit] = $this->getPage(); $where = ['uid'=>$this->request->uid(),'type'=>1]; return app('json')->success($this->repository->search($where, $page,$limit)); } /** * @return mixed * @author Qinii */ public function merchantList() { [$page, $limit] = $this->getPage(); $where = ['uid'=>$this->request->uid(),'type'=>10]; return app('json')->success($this->repository->search($where, $page,$limit)); } /** * TODO 收藏列表的删除 * @return \think\response\Json * @author Qinii * @day 7/12/21 */ public function lstDelete() { $params = $this->request->params(['type_id','type']); $params['uid'] = $this->request->uid(); if(!$this->repository->getWhere($params)) return app('json')->fail('信息不存在'); $this->repository->destory($params,1); return app('json')->success('已取消收藏'); } /** * TODO 商品详情中的取消收藏 * @return \think\response\Json * @author Qinii * @day 7/12/21 */ public function delete() { $params = $this->request->params(['type_id','type']); if (!$this->repository->getUserRelation($params,$this->request->uid())) return app('json')->fail('信息不存在'); $this->repository->destory($params); return app('json')->success('已取消收藏'); } /** * @return mixed * @author Qinii */ public function batchCreate() { $params = $this->request->params(['type_id','type']); if(!count($params['type_id']) || !in_array($params['type'], [1,10])) return app('json')->fail('缺少必备参数'); if($params['type'] == 1) $params['type'] = 0; $this->repository->batchCreate($this->request->uid(),$params); return app('json')->success('收藏成功'); } }