Message.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. namespace app\data\controller\base;
  3. use think\admin\Controller;
  4. /**
  5. * 系统通知管理
  6. * Class Message
  7. * @package app\data\controller\base
  8. */
  9. class Message extends Controller
  10. {
  11. /**
  12. * 绑定数据表
  13. * @var string
  14. */
  15. private $table = 'DataBaseMessage';
  16. /**
  17. * 系统通知管理
  18. * @auth true
  19. * @menu true
  20. * @throws \think\db\exception\DataNotFoundException
  21. * @throws \think\db\exception\DbException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. */
  24. public function index()
  25. {
  26. $this->title = '系统通知管理';
  27. $query = $this->_query($this->table);
  28. $query->like('name')->equal('status')->dateBetween('create_at');
  29. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  30. }
  31. /**
  32. * 添加系统通知
  33. * @auth true
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public function add()
  39. {
  40. $this->_form($this->table, 'form');
  41. }
  42. /**
  43. * 编辑系统通知
  44. * @auth true
  45. * @throws \think\db\exception\DataNotFoundException
  46. * @throws \think\db\exception\DbException
  47. * @throws \think\db\exception\ModelNotFoundException
  48. */
  49. public function edit()
  50. {
  51. $this->_form($this->table, 'form');
  52. }
  53. /**
  54. * 表单结果处理
  55. * @param boolean $state
  56. */
  57. protected function _form_result(bool $state)
  58. {
  59. if ($state) {
  60. $this->success('内容保存成功!', 'javascript:history.back()');
  61. }
  62. }
  63. /**
  64. * 修改通知状态
  65. * @auth true
  66. * @throws \think\db\exception\DbException
  67. */
  68. public function state()
  69. {
  70. $this->_save($this->table, $this->_vali([
  71. 'status.in:0,1' => '状态值范围异常!',
  72. 'status.require' => '状态值不能为空!',
  73. ]));
  74. }
  75. /**
  76. * 删除系统通知
  77. * @auth true
  78. * @throws \think\db\exception\DbException
  79. */
  80. public function remove()
  81. {
  82. $this->_delete($this->table);
  83. }
  84. }