ArticleItem.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <?php
  2. namespace app\Nutrition\controller;
  3. use app\common\model\ArticleIntro;
  4. use app\common\model\DatumIntro;
  5. use app\common\model\PlatformSwitch;
  6. use app\common\model\SupplierGoods;
  7. use app\common\model\User;
  8. use library\Controller;
  9. use app\common\model\SeriesArticleCate;
  10. /**
  11. * 图文管理
  12. * Class ArticleItem
  13. * @package app\Nutrition\controller
  14. */
  15. class ArticleItem extends Controller
  16. {
  17. /**
  18. * 绑定数据表
  19. * @var string
  20. */
  21. protected $table = 'ArticleItem';
  22. /**
  23. * 列表
  24. * @auth true
  25. * @menu true
  26. * @throws \think\Exception
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\ModelNotFoundException
  29. * @throws \think\exception\DbException
  30. * @throws \think\exception\PDOException
  31. */
  32. public function index()
  33. {
  34. $this->title = '图文列表';
  35. $this->article_id = input('article_id');
  36. $sel_where = [];
  37. $sel_where[] = ['is_deleted','=',0];
  38. $sel_where[] = ['article_id','=',$this->article_id];
  39. $query = $this->_query($this->table);
  40. $query->where($sel_where)->order('sort desc,id desc')->page(false);
  41. }
  42. /**
  43. * 数据列表处理
  44. * @auth true
  45. * @menu true
  46. * @param array $data
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @throws \think\exception\DbException
  50. */
  51. protected function _index_page_filter(&$data)
  52. {
  53. }
  54. /**
  55. * 添加
  56. * @auth true
  57. * @menu true
  58. * @throws \think\Exception
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\ModelNotFoundException
  61. * @throws \think\exception\DbException
  62. * @throws \think\exception\PDOException
  63. */
  64. public function add()
  65. {
  66. $this->title = '添加图文';
  67. $this->_form($this->table, 'form');
  68. }
  69. /**
  70. * 编辑
  71. * @auth true
  72. * @menu true
  73. * @throws \think\Exception
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @throws \think\exception\DbException
  77. * @throws \think\exception\PDOException
  78. */
  79. public function edit()
  80. {
  81. $this->title = '编辑图文';
  82. $this->_form($this->table, 'form') ;
  83. }
  84. /**
  85. * 删除图文
  86. * @auth true
  87. * @menu true
  88. * @throws \think\Exception
  89. * @throws \think\db\exception\DataNotFoundException
  90. * @throws \think\db\exception\ModelNotFoundException
  91. * @throws \think\exception\DbException
  92. * @throws \think\exception\PDOException
  93. */
  94. public function del()
  95. {
  96. $article_id = \app\common\model\ArticleItem::where('id',input('id'))->value('article_id');
  97. ArticleIntro::where('id',$article_id)->setDec('item_num');
  98. \app\common\model\ArticleItem::where('id',input('id'))->update(['is_deleted'=>1]);
  99. \app\common\model\ArticleItem::esAdd(input('id'));
  100. \app\common\model\TopSearch::saveData(input('id'),'article');
  101. $this->success('已删除!');
  102. }
  103. /**
  104. * 批量删除图文
  105. * @auth true
  106. * @menu true
  107. * @throws \think\Exception
  108. * @throws \think\db\exception\DataNotFoundException
  109. * @throws \think\db\exception\ModelNotFoundException
  110. * @throws \think\exception\DbException
  111. * @throws \think\exception\PDOException
  112. */
  113. public function remove()
  114. {
  115. $ids = input('id');
  116. foreach (explode(',',$ids) as $id) {
  117. $article_id = \app\common\model\ArticleItem::where('id',$id)->value('article_id');
  118. ArticleIntro::where('id',$article_id)->setDec('item_num');
  119. \app\common\model\ArticleItem::where('id',$id)->update(['is_deleted'=>1]);
  120. \app\common\model\ArticleItem::esAdd($id);
  121. \app\common\model\TopSearch::saveData($id,'article');
  122. }
  123. $this->success('已删除!');
  124. }
  125. /**
  126. * 表单数据处理
  127. * @auth true
  128. * @menu true
  129. * @param array $data
  130. */
  131. protected function _form_filter(&$data)
  132. {
  133. if($this->request->isGet() ){
  134. $this->article_id = input('article_id');
  135. $this->article_info = ArticleIntro::where('id',$this->article_id)->find()->toArray();
  136. // 视频
  137. $this->video_list = \app\common\model\VideoIntro::with('videoArr')
  138. ->where(['is_deleted'=>0])->order('id desc')
  139. ->select()->toArray();
  140. // 资料
  141. $this->datum_list = DatumIntro::with('urlArr')
  142. ->where(['is_deleted'=>0])->order('id desc')
  143. ->select()->toArray();
  144. $this->supplier_goods = SupplierGoods::getSupplierGoodsList($this->request->action() == 'add' ? ['s.is_deleted'=>0]: []);
  145. }
  146. if($this->request->isPost()){
  147. $is_vip = ArticleIntro::where('id',$this->request->post('article_id'))->value('is_vip');
  148. //if($is_vip) $data['is_vip'] = 1;
  149. if(empty($data['images'])) $this->error('请上传图片');
  150. $data['cover'] = explode('|',$data['images'])[0];
  151. if(!$data['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  152. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  153. if(!empty($data['phone'])) {
  154. $user_id = User::where('phone|email',$data['phone'])->value('id');
  155. if(!$user_id) $this->error('账号未注册');
  156. $data['user_id'] = $user_id;
  157. }else{
  158. $data['user_id'] = '';
  159. }
  160. if($data['content_type'] == 2) $data['content']='';
  161. }
  162. }
  163. protected function _form_result($result)
  164. {
  165. $article_num = \app\common\model\ArticleItem::field('id,read_num')->where(['article_id'=>$this->request->post('article_id'),'is_deleted'=>0])->select()->toArray();
  166. $article_info = ArticleIntro::where('id',$this->request->post('article_id'))->find()->toArray();
  167. $up = [];
  168. $up['item_num'] = count($article_num);
  169. if(!$article_info['cover']) $up['cover'] = explode('|',$this->request->post('images'))[0];
  170. if(!$article_info['video_id']) {
  171. $up['video_id'] = $this->request->post('video_id');
  172. $up['video_item'] = $this->request->post('video_item');
  173. $up['datum_id'] = $this->request->post('datum_id');
  174. $up['datum_item'] = $this->request->post('datum_item');
  175. }
  176. $up['read_num'] = array_sum(array_column($article_num,'read_num'));
  177. ArticleIntro::where('id',$this->request->post('article_id'))->update($up);
  178. \app\common\model\ArticleItem::esAdd($result);
  179. \app\common\model\TopSearch::saveData($result,'article');
  180. if($this->request->action() == 'add') PlatformSwitch::followMsg(3,$this->request->post('article_id'),$article_info['title'],$this->request->post('title'),$result);
  181. $this->success('操作成功', 'javascript:history.back()');
  182. }
  183. /**
  184. * 禁用
  185. * @auth true
  186. * @menu true
  187. * @throws \think\Exception
  188. * @throws \think\db\exception\DataNotFoundException
  189. * @throws \think\db\exception\ModelNotFoundException
  190. * @throws \think\exception\DbException
  191. * @throws \think\exception\PDOException
  192. */
  193. public function forbid()
  194. {
  195. \app\common\model\ArticleItem::where('id',input('id'))->update(['status'=>0]);
  196. \app\common\model\ArticleItem::esAdd(input('id'));
  197. \app\common\model\TopSearch::saveData(input('id'),'article');
  198. $this->success('已禁用!');
  199. }
  200. /**
  201. * 启用
  202. * @auth true
  203. * @menu true
  204. * @throws \think\Exception
  205. * @throws \think\db\exception\DataNotFoundException
  206. * @throws \think\db\exception\ModelNotFoundException
  207. * @throws \think\exception\DbException
  208. * @throws \think\exception\PDOException
  209. */
  210. public function resume()
  211. {
  212. \app\common\model\ArticleItem::where('id',input('id'))->update(['status'=>1]);
  213. \app\common\model\ArticleItem::esAdd(input('id'));
  214. \app\common\model\TopSearch::saveData(input('id'),'article');
  215. $this->success('已启用!');
  216. }
  217. /**
  218. * 富文本
  219. * @auth true
  220. * @menu true
  221. * @throws \think\Exception
  222. * @throws \think\db\exception\DataNotFoundException
  223. * @throws \think\db\exception\ModelNotFoundException
  224. * @throws \think\exception\DbException
  225. * @throws \think\exception\PDOException
  226. */
  227. public function content()
  228. {
  229. $this->title = '编辑富文本';
  230. $this->_form($this->table, 'content') ;
  231. }
  232. }