repository = $repository; } /** * @return mixed * @author Qinii */ public function lst($cid) { [$page, $limit] = $this->getPage(); $where = ['status' => 1,'cid' => $cid]; return app('json')->success($this->repository->search(0,$where, $page, $limit)); } public function detail($id) { if (!$this->repository->merApiExists($id)) return app('json')->fail('文章不存在'); return app('json')->success($this->repository->get($id,0)); } }