12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace app\data\controller;
- use think\admin\Controller;
- /**
- * 用户通知管理
- * Class UserNotify
- * @package app\data\controller
- */
- class UserNotify extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- private $table = 'DataUserNotify';
- /**
- * 系统通知管理
- * @auth true
- * @menu true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '系统通知管理';
- $query = $this->_query($this->table);
- $query->like('name')->equal('status')->dateBetween('create_at');
- $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
- }
- /**
- * 添加系统通知
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function add()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑系统通知
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function edit()
- {
- $this->_form($this->table, 'form');
- }
- /**
- * 表单结果处理
- * @param boolean $state
- */
- protected function _form_result(bool $state)
- {
- if ($state) {
- $this->success('内容保存成功!', 'javascript:history.back()');
- }
- }
- /**
- * 修改系统通知状态
- * @auth true
- * @throws \think\db\exception\DbException
- */
- public function state()
- {
- $this->_save($this->table, $this->_vali([
- 'status.in:0,1' => '状态值范围异常!',
- 'status.require' => '状态值不能为空!',
- ]));
- }
- /**
- * 删除系统通知
- * @auth true
- * @throws \think\db\exception\DbException
- */
- public function remove()
- {
- $this->_delete($this->table);
- }
- }
|