layTable(function () { $this->title = '系统通知管理'; }, function (QueryHelper $query) { $query->where(['deleted' => 0]); $query->like('name')->equal('status')->dateBetween('create_at'); }); } /** * 添加系统通知 * @auth true */ public function add() { $this->title = '添加系统通知'; BaseUserMessage::mForm('form'); } /** * 编辑系统通知 * @auth true */ public function edit() { $this->title = '编辑系统通知'; BaseUserMessage::mForm('form'); } /** * 表单结果处理 * @param boolean $state */ protected function _form_result(bool $state) { if ($state) { $this->success('内容保存成功!', 'javascript:history.back()'); } } /** * 修改通知状态 * @auth true */ public function state() { BaseUserMessage::mSave($this->_vali([ 'status.in:0,1' => '状态值范围异常!', 'status.require' => '状态值不能为空!', ])); } /** * 删除系统通知 * @auth true */ public function remove() { BaseUserMessage::mDelete(); } }