error('访问授权失败,请重新登录授权再试!'); } } /** * 获取系统消息列表 * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function gets() { $list = \app\admin\service\MessageService::gets(); $this->success('获取系统消息成功!', $list); } /** * 系统消息状态更新 * @throws \think\Exception * @throws \think\exception\PDOException */ public function set() { $code = $this->request->post('code'); if (\app\admin\service\MessageService::set($code)) { $this->success('系统消息状态更新成功!'); } else { $this->error('系统消息状态更新失败,请稍候再试!'); } } }