dataLists(new NoticeSettingLists()); } /** * @notes 查看通知设置详情 * @return \think\response\Json * @author 段誉 * @date 2022/3/29 11:18 */ public function detail() { $params = (new NoticeValidate())->goCheck('detail'); $result = NoticeLogic::detail($params); return $this->data($result); } /** * @notes 通知设置 * @return \think\response\Json * @author 段誉 * @date 2022/3/29 11:18 */ public function set() { $params = $this->request->post(); $result = NoticeLogic::set($params); if ($result) { return $this->success('设置成功'); } return $this->fail(NoticeLogic::getError()); } /** * @notes 获取通知弹框信息 */ public function getInformation() { $result = NoticeLogic::getInformation($this->adminId); if ($result) { return $this->success('获取成功', $result); } return $this->fail(NoticeLogic::getError()); } }