NewsMark.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. namespace app\data\controller;
  3. use think\admin\Controller;
  4. /**
  5. * 文章标签管理
  6. * Class NewsMark
  7. * @package app\data\controller
  8. */
  9. class NewsMark extends Controller
  10. {
  11. /**
  12. * 绑定数据表
  13. * @var string
  14. */
  15. private $table = 'DataNewsMark';
  16. /**
  17. * 文章标签管理
  18. * @auth true
  19. * @throws \think\db\exception\DataNotFoundException
  20. * @throws \think\db\exception\DbException
  21. * @throws \think\db\exception\ModelNotFoundException
  22. */
  23. public function index()
  24. {
  25. $this->title = '文章标签管理';
  26. $query = $this->_query($this->table);
  27. $query->like('name')->equal('status')->dateBetween('create_at');
  28. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  29. }
  30. /**
  31. * 添加文章标签
  32. * @auth true
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. */
  37. public function add()
  38. {
  39. $this->_form($this->table, 'form');
  40. }
  41. /**
  42. * 编辑文章标签
  43. * @auth true
  44. * @throws \think\db\exception\DataNotFoundException
  45. * @throws \think\db\exception\DbException
  46. * @throws \think\db\exception\ModelNotFoundException
  47. */
  48. public function edit()
  49. {
  50. $this->_form($this->table, 'form');
  51. }
  52. /**
  53. * 修改文章标签状态
  54. * @auth true
  55. * @throws \think\db\exception\DbException
  56. */
  57. public function state()
  58. {
  59. $this->_save($this->table, $this->_vali([
  60. 'status.in:0,1' => '状态值范围异常!',
  61. 'status.require' => '状态值不能为空!',
  62. ]));
  63. }
  64. /**
  65. * 删除文章标签
  66. * @auth true
  67. * @throws \think\db\exception\DbException
  68. */
  69. public function remove()
  70. {
  71. $this->_delete($this->table);
  72. }
  73. }