PlatformDemand.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. namespace app\operate\controller;
  3. use app\common\model\DatumIntro;
  4. use app\common\model\User;
  5. use library\Controller;
  6. use think\Db;
  7. use library\tools\Data;
  8. /**
  9. * 平台需求
  10. * Class PlatformDemand
  11. * @package app\operate\controller
  12. */
  13. class PlatformDemand extends Controller
  14. {
  15. protected $table = 'PlatformDemand';
  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.*,u.name,u.phone,u.headimg')
  34. ->leftJoin('store_member u','u.id = f.user_id')
  35. ->where($where)
  36. ->order('sort desc,f.id desc')->page();
  37. }
  38. /**
  39. * 删除
  40. * @auth true
  41. * @throws \think\Exception
  42. * @throws \think\exception\PDOException
  43. */
  44. public function del()
  45. {
  46. \app\common\model\PlatformDemand::where('id',input('id'))->update(['is_deleted'=>1]);
  47. \app\common\model\PlatformDemand::esAdd(input('id'));
  48. \app\common\model\TopSearch::saveData(input('id'),'demand');
  49. $this->success('已删除!');
  50. }
  51. /**
  52. * 批量删除
  53. * @auth true
  54. * @throws \think\Exception
  55. * @throws \think\exception\PDOException
  56. */
  57. public function remove()
  58. {
  59. $ids = input('id');
  60. foreach (explode(',',$ids) as $id) {
  61. \app\common\model\PlatformDemand::where('id',$id)->update(['is_deleted'=>1]);
  62. \app\common\model\PlatformDemand::esAdd($id);
  63. \app\common\model\TopSearch::saveData($id,'demand');
  64. }
  65. $this->success('已删除!');
  66. }
  67. /**
  68. * 编辑
  69. * @auth true
  70. * @menu true
  71. * @throws \think\Exception
  72. * @throws \think\db\exception\DataNotFoundException
  73. * @throws \think\db\exception\ModelNotFoundException
  74. * @throws \think\exception\DbException
  75. * @throws \think\exception\PDOException
  76. */
  77. public function add()
  78. {
  79. $this->title = '添加';
  80. $this->_form($this->table, 'form');
  81. }
  82. /**
  83. * 编辑
  84. * @auth true
  85. * @menu true
  86. * @throws \think\Exception
  87. * @throws \think\db\exception\DataNotFoundException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. * @throws \think\exception\DbException
  90. * @throws \think\exception\PDOException
  91. */
  92. public function edit()
  93. {
  94. $this->title = '编辑';
  95. $this->_form($this->table, 'form');
  96. }
  97. /**
  98. * 商品上架
  99. * @auth true
  100. * @menu true
  101. * @throws \think\Exception
  102. * @throws \think\db\exception\DataNotFoundException
  103. * @throws \think\db\exception\ModelNotFoundException
  104. * @throws \think\exception\DbException
  105. * @throws \think\exception\PDOException
  106. */
  107. public function up()
  108. {
  109. \app\common\model\PlatformDemand::where('id',input('id'))->update(['status'=>1]);
  110. \app\common\model\PlatformDemand::esAdd(input('id'));
  111. \app\common\model\TopSearch::saveData(input('id'),'demand');
  112. $this->success('已上架!');
  113. }
  114. /**
  115. * 商品下架
  116. * @auth true
  117. * @menu true
  118. * @throws \think\Exception
  119. * @throws \think\db\exception\DataNotFoundException
  120. * @throws \think\db\exception\ModelNotFoundException
  121. * @throws \think\exception\DbException
  122. * @throws \think\exception\PDOException
  123. */
  124. public function down()
  125. {
  126. \app\common\model\PlatformDemand::where('id',input('id'))->update(['status'=>0]);
  127. \app\common\model\PlatformDemand::esAdd(input('id'));
  128. \app\common\model\TopSearch::saveData(input('id'),'demand');
  129. $this->success('已下架!');
  130. }
  131. protected function _form_filter(&$data)
  132. {
  133. // 资料
  134. $this->datum_list = DatumIntro::with('urlArr')
  135. ->where(['is_deleted'=>0])->order('id desc')
  136. ->select()->toArray();
  137. if($this->request->isGet() && $this->request->action() == 'edit') $this->user_info = Db::name('store_member')->find($data['user_id']);
  138. if($this->request->isPost())
  139. {
  140. if(!$data['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  141. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  142. if(!empty($data['phone'])) {
  143. $user_id = User::where('phone|email',$data['phone'])->value('id');
  144. if(!$user_id) $this->error('该账号未注册');
  145. $data['user_id'] = $user_id;
  146. }else{
  147. $data['user_id'] = 0;
  148. }
  149. list($post) = [$this->request->post()];
  150. //定时热搜
  151. if(!$post['hot_num']){
  152. $post['hot_num'] = 0;
  153. }
  154. if(isset($post['id'])){
  155. $info = \app\common\model\PlatformDemand::where('id',$data['id'])->find();
  156. if(($post['regular_hot_end_time'] && $post['hot_target_num'] && $info['regular_hot_end_time'] != $post['regular_hot_end_time']) || ($info['hot_num'] != $post['hot_num'] && $post['regular_hot_end_time'] && $post['hot_target_num'])){
  157. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  158. $startdate = strtotime($data['regular_hot_start_time']);
  159. $enddate = strtotime($post['regular_hot_end_time']);
  160. $diff_seconds = ($enddate-$startdate)/60;
  161. $min_num = ceil($diff_seconds/10);
  162. $hot_num = $post['hot_target_num'] - $post['hot_num'];
  163. $num = ceil($hot_num/$min_num);
  164. if($num < 0){
  165. $num = 0;
  166. }
  167. $data['regular_num'] = $num;
  168. }
  169. }else{
  170. if($post['regular_hot_end_time'] && $post['hot_target_num']){
  171. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  172. $startdate = strtotime($data['regular_hot_start_time']);
  173. $enddate = strtotime($post['regular_hot_end_time']);
  174. $diff_seconds = ($enddate-$startdate)/60;
  175. $min_num = ceil($diff_seconds/10);
  176. $hot_num = $post['hot_target_num'] - $post['hot_num'];
  177. $num = ceil($hot_num/$min_num);
  178. if($num < 0){
  179. $num = 0;
  180. }
  181. $data['regular_num'] = $num;
  182. }
  183. }
  184. //定时热搜end
  185. }
  186. }
  187. protected function _form_result($result){
  188. \app\common\model\PlatformDemand::esAdd($result);
  189. \app\common\model\TopSearch::saveData($result,'demand');
  190. $this->success('操作成功', 'javascript:history.back()');
  191. }
  192. }