success('获取系统消息成功!', $list); } /** * 系统消息状态更新 * @throws \think\Exception * @throws \think\exception\PDOException */ public function set() { $code = $this->request->post('code'); if (\app\admin\service\Message::set($code)) { $this->success('系统消息状态更新成功!'); } else { $this->error('系统消息状态更新失败,请稍候再试!'); } } }