Press.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. namespace app\operate\controller;
  3. use app\common\model\DatumIntro;
  4. use app\common\model\SupplierGoods;
  5. use app\common\model\User;
  6. use library\Controller;
  7. use think\Db;
  8. /**
  9. * 新闻
  10. * Class Press
  11. * @package app\operate\controller
  12. */
  13. class Press extends Controller
  14. {
  15. protected $table = 'Press';
  16. /**
  17. * 列表
  18. * @auth true
  19. * @menu true
  20. * @throws \think\Exception
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. * @throws \think\exception\DbException
  24. * @throws \think\exception\PDOException
  25. */
  26. public function index()
  27. {
  28. $this->title = '列表';
  29. $where = [];
  30. $where[] = ['f.is_deleted','=',0];
  31. if($title = input('title')) $where[] = ['f.title','like','%'.$title.'%'];
  32. $query = $this->_query($this->table)->alias('f')
  33. ->field('f.*')
  34. ->where($where)
  35. ->order('sort desc,f.id desc')->page();
  36. }
  37. /**
  38. * 添加
  39. * @auth true
  40. * @menu true
  41. * @throws \think\Exception
  42. * @throws \think\db\exception\DataNotFoundException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. * @throws \think\exception\DbException
  45. * @throws \think\exception\PDOException
  46. */
  47. public function add()
  48. {
  49. $this->title = '添加';
  50. $this->_form($this->table, 'form');
  51. }
  52. /**
  53. * 编辑
  54. * @auth true
  55. * @menu true
  56. * @throws \think\Exception
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. * @throws \think\exception\PDOException
  61. */
  62. public function edit()
  63. {
  64. $this->title = '编辑';
  65. $this->_form($this->table, 'form');
  66. }
  67. /**
  68. * 删除
  69. * @auth true
  70. * @throws \think\Exception
  71. * @throws \think\exception\PDOException
  72. */
  73. public function del()
  74. {
  75. \app\common\model\Press::where('id',input('id'))->update(['is_deleted'=>1]);
  76. \app\common\model\Press::esAdd(input('id'));
  77. \app\common\model\TopSearch::saveData(input('id'),'press');
  78. $this->success('已删除!');
  79. }
  80. /**
  81. * 删除
  82. * @auth true
  83. * @throws \think\Exception
  84. * @throws \think\exception\PDOException
  85. */
  86. public function remove()
  87. {
  88. $ids = input('id');
  89. foreach (explode(',',$ids) as $id) {
  90. \app\common\model\Press::where('id',$id)->update(['is_deleted'=>1]);
  91. \app\common\model\Press::esAdd($id);
  92. \app\common\model\TopSearch::saveData($id,'press');
  93. }
  94. $this->success('已删除!');
  95. }
  96. /**
  97. * 启用
  98. * @auth true
  99. * @menu true
  100. * @throws \think\Exception
  101. * @throws \think\exception\PDOException
  102. */
  103. public function enable()
  104. {
  105. \app\common\model\Press::where('id',input('id'))->update(['status'=>1]);
  106. \app\common\model\Press::esAdd(input('id'));
  107. $this->success('已上架!');
  108. }
  109. /**
  110. * 禁用
  111. * @auth true
  112. * @menu true
  113. * @throws \think\Exception
  114. * @throws \think\db\exception\DataNotFoundException
  115. * @throws \think\db\exception\ModelNotFoundException
  116. * @throws \think\exception\DbException
  117. * @throws \think\exception\PDOException
  118. */
  119. public function forbidden()
  120. {
  121. \app\common\model\Press::where('id',input('id'))->update(['status'=>0]);
  122. \app\common\model\Press::esAdd(input('id'));
  123. \app\common\model\TopSearch::saveData(input('id'),'press');
  124. $this->success('已下架!');
  125. }
  126. protected function _form_filter(&$data){
  127. // 文章列表
  128. $this->article_list =\app\common\model\ArticleIntro::with('itemChildren')
  129. ->field('id,title')
  130. ->where(['is_deleted'=>0])->order('id asc')
  131. ->select()->toArray();
  132. // 视频
  133. $this->video_list = \app\common\model\VideoIntro::with('videoArr')
  134. ->where(['is_deleted'=>0])->order('id desc')
  135. ->select()->toArray();
  136. // 资料
  137. $this->datum_list = DatumIntro::with('urlArr')
  138. ->where(['is_deleted'=>0])->order('id desc')
  139. ->select()->toArray();
  140. $this->supplier_goods = SupplierGoods::getSupplierGoodsList($this->request->action() == 'add' ? ['s.is_deleted'=>0]: []);
  141. if($this->request->isPost())
  142. {
  143. if(empty($data['title']))$this->error('请输入标题');
  144. if(empty($data['images']))$this->error('请上传封面');
  145. if(!$data['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  146. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  147. if(!empty($data['phone'])) {
  148. $user_id = User::where('phone|email',$data['phone'])->value('id');
  149. if(!$user_id) $this->error('账号未注册');
  150. $data['user_id'] = $user_id;
  151. }else{
  152. $data['user_id'] = '';
  153. }
  154. }
  155. }
  156. protected function _form_result(&$data)
  157. {
  158. \app\common\model\Press::esAdd($data);
  159. \app\common\model\TopSearch::saveData($data,'press');
  160. $this->success('操作成功', 'javascript:history.back()');
  161. }
  162. }