field('id, name, createtime') ->order('weigh desc') ->paginate(15, true); $this->success('', ['list' => $list]); } /** * 详情 */ public function detail() { if (!$id = input('id/d', '0')) { $this->error('缺少公告ID'); } if (!$notice = NoticeModel::where('id', $id)->where('status', CommonStatus::NORMAL)->find()) { $this->error('公告信息不存在'); } $this->success('', $notice); } }