title = '系统消息管理'; $query = $this->_query($this->table)->like('title,desc')->equal('read_state'); $query->dateBetween('create_at,read_at')->order('id desc')->page(); } /** * 设置消息状态 */ public function read() { $this->_save($this->table, ['read_state' => '1', 'read_at' => date('Y-m-d H:i:s')]); } /** * 清理所有消息 * @throws \think\Exception * @throws \think\exception\PDOException */ public function clear() { if (Db::name($this->table)->whereRaw('1=1')->delete() !== false) { $this->success('系统消息清理成功!'); } else { $this->error('系统消息清理失败,请稍候再试!'); } } /** * 设置消息开关 * @throws \think\Exception * @throws \think\exception\PDOException */ public function state() { sysconf('system_message_state', sysconf('system_message_state') ? 0 : 1); if (sysconf('system_message_state')) { $this->success('系统消息提示开启成功!'); } else { $this->success('系统消息提示关闭成功!'); } } /** * 删除系统消息 */ public function remove() { $this->_delete($this->table); } }