SeriesArticle.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. namespace app\Nutrition\controller;
  3. use app\common\model\ArticleIntro;
  4. use app\common\model\SeriesArticleCate;
  5. use library\Controller;
  6. use library\tools\Data;
  7. use app\common\model\DatumCate;
  8. /**
  9. * 图文管理
  10. * Class SeriesArticle
  11. * @package app\Nutrition\controller
  12. */
  13. class SeriesArticle extends Controller
  14. {
  15. /**
  16. * 绑定数据表
  17. * @var string
  18. */
  19. protected $table = 'ArticleIntro';
  20. /**
  21. * 列表
  22. * @auth true
  23. * @menu true
  24. * @throws \think\Exception
  25. * @throws \think\db\exception\DataNotFoundException
  26. * @throws \think\db\exception\ModelNotFoundException
  27. * @throws \think\exception\DbException
  28. * @throws \think\exception\PDOException
  29. */
  30. public function index()
  31. {
  32. $this->title = '文章列表';
  33. $sel_where = [];
  34. $sel_where[] = ['is_deleted','=',0];
  35. $sel_where[] = ['type','=',2];
  36. if($title = $this->request->get('title')) $sel_where[] = ['title','like','%'.$title.'%'];
  37. if($label = $this->request->get('label')) $sel_where[] = ['label','like','%'.$label.'%'];
  38. if($id = $this->request->get('id')) $sel_where[] = ['id','=',$id];
  39. $this->is_vip = $is_vip = $this->request->get('is_vip',-1);
  40. if($is_vip >= 0) $sel_where[] = ['is_vip','=',$is_vip ];
  41. $in_ids = '';
  42. if($phone = $this->request->get('phone')) $in_ids = \app\common\model\ArticleItem::where('phone','like','%'.$phone.'%')->column('article_id');
  43. $query = $this->_query($this->table);
  44. $query->where($sel_where)
  45. ->when($in_ids,function ($query)use ($in_ids){
  46. if(!empty($in_ids)) $query->where('id','in',$in_ids);
  47. })->order('sort desc,id desc')->page();
  48. }
  49. /**
  50. * 数据列表处理
  51. * @auth true
  52. * @menu true
  53. * @param array $data
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\ModelNotFoundException
  56. * @throws \think\exception\DbException
  57. */
  58. protected function _index_page_filter(&$data)
  59. {
  60. }
  61. /**
  62. * 添加
  63. * @auth true
  64. * @menu true
  65. * @throws \think\Exception
  66. * @throws \think\db\exception\DataNotFoundException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. * @throws \think\exception\DbException
  69. * @throws \think\exception\PDOException
  70. */
  71. public function add()
  72. {
  73. $this->title = '添加图文';
  74. $this->type = input('get.type',2);
  75. $this->_form($this->table, 'form');
  76. }
  77. /**
  78. * 编辑
  79. * @auth true
  80. * @menu true
  81. * @throws \think\Exception
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @throws \think\exception\DbException
  85. * @throws \think\exception\PDOException
  86. */
  87. public function edit()
  88. {
  89. $this->title = '编辑图文';
  90. $this->type = input('get.type',2);
  91. $this->_form($this->table, 'form') ;
  92. }
  93. /**
  94. * 禁用
  95. * @auth true
  96. * @menu true
  97. * @throws \think\Exception
  98. * @throws \think\db\exception\DataNotFoundException
  99. * @throws \think\db\exception\ModelNotFoundException
  100. * @throws \think\exception\DbException
  101. * @throws \think\exception\PDOException
  102. */
  103. public function forbid()
  104. {
  105. $this->_save($this->table, ['status' => '0']);
  106. }
  107. /**
  108. * 启用
  109. * @auth true
  110. * @menu true
  111. * @throws \think\Exception
  112. * @throws \think\db\exception\DataNotFoundException
  113. * @throws \think\db\exception\ModelNotFoundException
  114. * @throws \think\exception\DbException
  115. * @throws \think\exception\PDOException
  116. */
  117. public function resume()
  118. {
  119. $this->_save($this->table, ['status' => 1]);
  120. }
  121. /**
  122. * 删除图文
  123. * @auth true
  124. * @menu true
  125. * @throws \think\Exception
  126. * @throws \think\db\exception\DataNotFoundException
  127. * @throws \think\db\exception\ModelNotFoundException
  128. * @throws \think\exception\DbException
  129. * @throws \think\exception\PDOException
  130. */
  131. public function del()
  132. {
  133. $this->_save($this->table, ['is_deleted' => 1]);
  134. }
  135. /**
  136. * 表单数据处理
  137. * @auth true
  138. * @menu true
  139. * @param array $data
  140. */
  141. protected function _form_filter(&$data)
  142. {
  143. if($this->request->isGet()){
  144. $this->r = input('get.r',0);
  145. if($this->request->isGet()){
  146. $all_cate = SeriesArticleCate::where(['is_deleted'=>0])->order('sort desc ,id desc')->select();
  147. $this->cate_tree = make_tree($all_cate);
  148. }
  149. }
  150. if($this->request->isPost()) {
  151. if($this->request->action() == 'add') $data['item_num'] = 0;
  152. }
  153. }
  154. }