CommentReport.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace app\nutrition\controller;
  3. use app\common\model\ForumReplyComment;
  4. use app\common\model\UserForum;
  5. use library\Controller;
  6. /**
  7. * 举报
  8. * Class CommentReport
  9. * @package app\nutrition\controller
  10. */
  11. class CommentReport extends Controller
  12. {
  13. protected $table ="UserReport";
  14. /**
  15. * 列表
  16. * @auth true
  17. * @menu true
  18. */
  19. public function index()
  20. {
  21. $this->title = '举报列表';
  22. $type=input('type',8);
  23. $where= [];
  24. if($this->request->request('name')) $where[]= ['m.name','like','%'.$this->request->request('name').'%'];
  25. if($this->request->request('content')) $where[]= ['f.content','like','%'.$this->request->request('content').'%'];
  26. $where[]= ['f.is_deleted','=',0];
  27. $where[]= ['f.type','=',$type];
  28. $query = $this->_query($this->table);
  29. $query->alias('f')
  30. ->field('f.* ,m.headimg,m.name')
  31. ->join('store_member m',' m.id = f.user_id ','LEFT');
  32. $arr = ['is_new' => 0];
  33. \app\common\model\UserReport::alias('f')->where('is_new',1)->where('type',$type)->update($arr);
  34. if(!empty($where)) $query->where($where);
  35. $query ->order('f.id desc')->page();
  36. }
  37. /**反馈列表处理
  38. * @param array $data
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @throws \think\exception\DbException
  42. */
  43. protected function _index_page_filter(array &$data)
  44. {
  45. array_walk($data,function (&$val,$key){
  46. $val['report_arr'] = \app\common\model\ReportCase::where('id','in',$val['case_ids'])->column('title');
  47. switch ($val['type'])
  48. {
  49. case 2:
  50. $val['object_info'] = \app\common\model\VideoComment::where('id',$val['report_id'])->find()->toArray();
  51. $val['be_report'] = \app\common\model\VideoUrl::field('a.id second_id,a.title second_title, b.id first_id,b.title first_title')
  52. ->alias('a')
  53. ->where('a.id', $val['object_info']['url_id'])
  54. ->leftJoin('VideoIntro b','b.id = a.video_id')
  55. ->find()->toArray();
  56. break;
  57. case 8:
  58. $val['object_info'] = \app\common\model\ArticleComment::where('id',$val['report_id'])->find()->toArray();
  59. $val['be_report'] = \app\common\model\ArticleItem::field('a.id second_id,a.title second_title, b.id first_id,b.title first_title')
  60. ->alias('a')
  61. ->where('a.id', $val['object_info']['item_id'])
  62. ->leftJoin('ArticleIntro b','b.id = a.article_id')
  63. ->find()->toArray();
  64. break;
  65. case 9:
  66. $val['object_info'] = \app\common\model\PressComment::where('id',$val['report_id'])->find()->toArray();
  67. $val['be_report'] = \app\common\model\Press::field('a.id second_id,a.title second_title')
  68. ->alias('a')
  69. ->where('a.id', $val['object_info']['first_id'])
  70. ->find()->toArray();
  71. break;
  72. case 10:
  73. $val['object_info'] = \app\common\model\DatumComment::where('id',$val['report_id'])->find()->toArray();
  74. $val['be_report'] = \app\common\model\DatumUrl::field('a.id second_id,a.title second_title, b.id first_id,b.title first_title')
  75. ->alias('a')
  76. ->where('a.id', $val['object_info']['url_id'])
  77. ->leftJoin('DatumIntro b','b.id = a.datum_id')
  78. ->find()->toArray();
  79. break;
  80. case 12:
  81. $val['object_info'] = ForumReplyComment::where('id',$val['report_id'])->find()->toArray();
  82. $val['be_report'] = UserForum::field('a.id second_id,a.title second_title')->alias('a')->where('a.id', $val['object_info']['forum_id'])
  83. ->find()->toArray();
  84. break;
  85. case 14:
  86. $val['object_info'] = \app\common\model\SupplierComment::where('id',$val['report_id'])->find()->toArray();
  87. $val['be_report'] = \app\common\model\SupplierGoods::field('a.id second_id,a.name second_title')
  88. ->alias('a')
  89. ->where('a.id', $val['object_info']['goods_id'])
  90. ->find()->toArray();
  91. break;
  92. case 16:
  93. $val['object_info'] = \app\common\model\DemandComment::where('id',$val['report_id'])->find()->toArray();
  94. $val['be_report'] = \app\common\model\PlatformDemand::field('a.id second_id,a.title second_title')
  95. ->alias('a')
  96. ->where('a.id', $val['object_info']['demand_id'])
  97. ->find()->toArray();
  98. break;
  99. case 17:
  100. $val['object_info'] = \app\common\model\DemandComment::where('id',$val['report_id'])->find()->toArray();
  101. $val['be_report'] = \app\common\model\PlatformDemand::field('a.id second_id,a.title second_title')
  102. ->alias('a')
  103. ->where('a.id', $val['object_info']['first_id'])
  104. ->find()->toArray();
  105. break;
  106. }
  107. });
  108. }
  109. /**
  110. * 删除
  111. * @auth true
  112. * @menu true
  113. */
  114. public function del()
  115. {
  116. $this->_save($this->table, ['is_deleted' => 1]);
  117. }
  118. /**
  119. * 批量删除
  120. * @auth true
  121. * @menu true
  122. */
  123. public function remove()
  124. {
  125. $this->_save($this->table, ['is_deleted' => 1]);
  126. }
  127. /**
  128. * 回复
  129. * @auth true
  130. * @menu true
  131. */
  132. public function edit()
  133. {
  134. $this->title = '回复';
  135. $this->_form($this->table,'form');
  136. }
  137. protected function _form_filter(&$data)
  138. {
  139. if($this->request->action() == 'edit' && $this->request->isGet())
  140. {
  141. $data['title'] = \app\common\model\ArticleIntro::where('id',$data['report_id'])->value('title');
  142. }
  143. }
  144. }