Item.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. namespace app\data\controller\news;
  3. use app\data\service\NewsService;
  4. use think\admin\Controller;
  5. use think\admin\extend\CodeExtend;
  6. /**
  7. * 文章内容管理
  8. * Class Item
  9. * @package app\data\controller\news
  10. */
  11. class Item extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. private $table = 'DataNewsItem';
  18. /**
  19. * 文章内容管理
  20. * @auth true
  21. * @menu true
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\DbException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. */
  26. public function index()
  27. {
  28. $this->title = '文章内容管理';
  29. $query = $this->_query($this->table);
  30. $query->like('mark,name')->dateBetween('create_at');
  31. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  32. }
  33. /**
  34. * 文章内容选择器
  35. * @login true
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function select()
  41. {
  42. $query = $this->_query($this->table);
  43. $query->equal('status')->like('name')->dateBetween('create_at');
  44. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  45. }
  46. /**
  47. * 列表数据处理
  48. * @param array $data
  49. */
  50. protected function _page_filter(array &$data)
  51. {
  52. NewsService::instance()->buildData($data);
  53. }
  54. /**
  55. * 添加文章内容
  56. * @auth true
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\DbException
  59. * @throws \think\db\exception\ModelNotFoundException
  60. */
  61. public function add()
  62. {
  63. $this->title = '添加文章内容';
  64. $this->_form($this->table, 'form');
  65. }
  66. /**
  67. * 编辑文章内容
  68. * @auth true
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\DbException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. */
  73. public function edit()
  74. {
  75. $this->title = '编辑文章内容';
  76. $this->_form($this->table, 'form');
  77. }
  78. /**
  79. * 表单数据处理
  80. * @param array $data
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\DbException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. */
  85. protected function _form_filter(array &$data)
  86. {
  87. if (empty($data['code'])) {
  88. $data['code'] = CodeExtend::uniqidNumber(20, 'A');
  89. }
  90. if ($this->request->isGet()) {
  91. $map = ['status' => 1, 'deleted' => 0];
  92. $query = $this->app->db->name('DataNewsMark')->where($map);
  93. $this->marks = $query->order('sort desc,id desc')->select()->toArray();
  94. $data['mark'] = str2arr($data['mark'] ?? '');
  95. } else {
  96. $data['mark'] = arr2str($data['mark'] ?? []);
  97. }
  98. }
  99. /**
  100. * 表单结果处理
  101. * @param boolean $state
  102. */
  103. protected function _form_result(bool $state)
  104. {
  105. if ($state) {
  106. $this->success('文章内容保存成功!', 'javascript:history.back()');
  107. }
  108. }
  109. /**
  110. * 修改文章状态
  111. * @auth true
  112. * @throws \think\db\exception\DbException
  113. */
  114. public function state()
  115. {
  116. $this->_save($this->table, $this->_vali([
  117. 'status.in:0,1' => '状态值范围异常!',
  118. 'status.require' => '状态值不能为空!',
  119. ]));
  120. }
  121. /**
  122. * 删除文章内容
  123. * @auth true
  124. * @throws \think\db\exception\DbException
  125. */
  126. public function remove()
  127. {
  128. $this->_delete($this->table);
  129. }
  130. }