DatumUrl.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. namespace app\Nutrition\controller;
  3. use app\common\model\DatumIntro;
  4. use app\common\model\PlatformSwitch;
  5. use app\common\model\SupplierGoods;
  6. use app\common\model\User;
  7. use library\Controller;
  8. use app\common\model\DatumCate;
  9. use function AlibabaCloud\Client\value;
  10. /**
  11. * 资料管理
  12. * Class OneDatum
  13. * @package app\Nutrition\controller
  14. */
  15. class DatumUrl extends Controller
  16. {
  17. /**
  18. * 绑定数据表
  19. * @var string
  20. */
  21. protected $table = 'DatumUrl';
  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->datum_id = input('datum_id');
  36. $sel_where = [];
  37. $sel_where[] = ['is_deleted','=',0];
  38. $sel_where[] = ['datum_id','=',$this->datum_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. $datum_id = \app\common\model\DatumUrl::where('id',input('id'))->value('datum_id');
  97. DatumIntro::where('id',$datum_id)->setDec('url_num');
  98. \app\common\model\DatumUrl::where('id',input('id'))->update(['is_deleted'=>1]);
  99. \app\common\model\DatumUrl::esAdd(input('id'));
  100. \app\common\model\TopSearch::saveData(input('id'),'datum');
  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. $datum_id = \app\common\model\DatumUrl::where('id',$id)->value('datum_id');
  118. DatumIntro::where('id',$datum_id)->setDec('url_num');
  119. \app\common\model\DatumUrl::where('id',$id)->update(['is_deleted'=>1]);
  120. \app\common\model\DatumUrl::esAdd($id);
  121. \app\common\model\TopSearch::saveData($id,'datum');
  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->datum_id = input('datum_id');
  135. $this->datum_info = DatumIntro::where('id',$this->datum_id)->find()->toArray();
  136. $this->cate_name = DatumCate::where('id',$this->datum_info['datum_cate'])->value('title');
  137. // 视频
  138. $this->video_list = \app\common\model\VideoIntro::with('videoArr')
  139. ->where(['is_deleted'=>0])->order('id desc')
  140. ->select()->toArray();
  141. $this->supplier_goods = SupplierGoods::getSupplierGoodsList($this->request->action() == 'add' ? ['s.is_deleted'=>0]: []);
  142. }
  143. if($this->request->isPost()){
  144. list($post) = [$this->request->post()];
  145. if(empty($post['url'])) $this->error('请上传文件');
  146. if(!$post['is_encrypt'] && !strstr($post['url'],'https')) $this->error('请重新上传文件');
  147. if($post['is_encrypt'] && strstr($post['url'],'https')) $this->error('请重新上传文件');
  148. if(!$data['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  149. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  150. if(!empty($post['phone'])) {
  151. $user_id = User::where('phone|email',$post['phone'])->value('id');
  152. if(!$user_id) $this->error('账号未注册');
  153. $data['user_id'] = $user_id;
  154. }else{
  155. $data['user_id'] = '';
  156. }
  157. }
  158. }
  159. protected function _form_result($result)
  160. {
  161. $url_num = \app\common\model\DatumUrl::where(['datum_id'=>$this->request->post('datum_id'),'is_deleted'=>0])->count();
  162. DatumIntro::where('id',$this->request->post('datum_id'))->update(['url_num'=>$url_num]);
  163. \app\common\model\DatumUrl::esAdd($result);
  164. \app\common\model\TopSearch::saveData($result,'datum');
  165. if($this->request->action() == 'add'){
  166. $datum_info = DatumIntro::where('id',$this->request->post('datum_id'))->find()->toArray();
  167. PlatformSwitch::followMsg(4,$this->request->post('datum_id'),$datum_info['title'],$this->request->post('title'),$result);
  168. }
  169. $this->success('保存成功');
  170. }
  171. /**
  172. * 禁用
  173. * @auth true
  174. * @menu true
  175. * @throws \think\Exception
  176. * @throws \think\db\exception\DataNotFoundException
  177. * @throws \think\db\exception\ModelNotFoundException
  178. * @throws \think\exception\DbException
  179. * @throws \think\exception\PDOException
  180. */
  181. public function forbidden()
  182. {
  183. \app\common\model\DatumUrl::where('id',input('id'))->update(['status'=>0]);
  184. \app\common\model\DatumUrl::esAdd(input('id'));
  185. \app\common\model\TopSearch::saveData(input('id'),'datum');
  186. $this->success('已禁用!');
  187. }
  188. /**
  189. * 启用
  190. * @auth true
  191. * @menu true
  192. * @throws \think\Exception
  193. * @throws \think\db\exception\DataNotFoundException
  194. * @throws \think\db\exception\ModelNotFoundException
  195. * @throws \think\exception\DbException
  196. * @throws \think\exception\PDOException
  197. */
  198. public function enable()
  199. {
  200. \app\common\model\DatumUrl::where('id',input('id'))->update(['status'=>1]);
  201. \app\common\model\DatumUrl::esAdd(input('id'));
  202. \app\common\model\TopSearch::saveData(input('id'),'datum');
  203. $this->success('已启用!');
  204. }
  205. }