123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- namespace app\nutrition\controller;
- use app\common\model\ForumReplyComment;
- use app\common\model\UserForum;
- use library\Controller;
- /**
- * 举报
- * Class CommentReport
- * @package app\nutrition\controller
- */
- class CommentReport extends Controller
- {
- protected $table ="UserReport";
- /**
- * 列表
- * @auth true
- * @menu true
- */
- public function index()
- {
- $this->title = '举报列表';
- $type=input('type',8);
- $where= [];
- if($this->request->request('name')) $where[]= ['m.name','like','%'.$this->request->request('name').'%'];
- if($this->request->request('content')) $where[]= ['f.content','like','%'.$this->request->request('content').'%'];
- $where[]= ['f.is_deleted','=',0];
- $where[]= ['f.type','=',$type];
- $query = $this->_query($this->table);
- $query->alias('f')
- ->field('f.* ,m.headimg,m.name')
- ->join('store_member m',' m.id = f.user_id ','LEFT');
- $arr = ['is_new' => 0];
- \app\common\model\UserReport::alias('f')->where('is_new',1)->where('type',$type)->update($arr);
- if(!empty($where)) $query->where($where);
- $query ->order('f.id desc')->page();
- }
- /**反馈列表处理
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(array &$data)
- {
- array_walk($data,function (&$val,$key){
- $val['report_arr'] = \app\common\model\ReportCase::where('id','in',$val['case_ids'])->column('title');
- switch ($val['type'])
- {
- case 2:
- $val['object_info'] = \app\common\model\VideoComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = \app\common\model\VideoUrl::field('a.id second_id,a.title second_title, b.id first_id,b.title first_title')
- ->alias('a')
- ->where('a.id', $val['object_info']['url_id'])
- ->leftJoin('VideoIntro b','b.id = a.video_id')
- ->find()->toArray();
- break;
- case 8:
- $val['object_info'] = \app\common\model\ArticleComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = \app\common\model\ArticleItem::field('a.id second_id,a.title second_title, b.id first_id,b.title first_title')
- ->alias('a')
- ->where('a.id', $val['object_info']['item_id'])
- ->leftJoin('ArticleIntro b','b.id = a.article_id')
- ->find()->toArray();
- break;
- case 9:
- $val['object_info'] = \app\common\model\PressComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = \app\common\model\Press::field('a.id second_id,a.title second_title')
- ->alias('a')
- ->where('a.id', $val['object_info']['first_id'])
- ->find()->toArray();
- break;
- case 10:
- $val['object_info'] = \app\common\model\DatumComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = \app\common\model\DatumUrl::field('a.id second_id,a.title second_title, b.id first_id,b.title first_title')
- ->alias('a')
- ->where('a.id', $val['object_info']['url_id'])
- ->leftJoin('DatumIntro b','b.id = a.datum_id')
- ->find()->toArray();
- break;
- case 12:
- $val['object_info'] = ForumReplyComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = UserForum::field('a.id second_id,a.title second_title')->alias('a')->where('a.id', $val['object_info']['forum_id'])
- ->find()->toArray();
- break;
- case 14:
- $val['object_info'] = \app\common\model\SupplierComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = \app\common\model\SupplierGoods::field('a.id second_id,a.name second_title')
- ->alias('a')
- ->where('a.id', $val['object_info']['goods_id'])
- ->find()->toArray();
- break;
- case 16:
- $val['object_info'] = \app\common\model\DemandComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = \app\common\model\PlatformDemand::field('a.id second_id,a.title second_title')
- ->alias('a')
- ->where('a.id', $val['object_info']['demand_id'])
- ->find()->toArray();
- break;
- case 17:
- $val['object_info'] = \app\common\model\DemandComment::where('id',$val['report_id'])->find()->toArray();
- $val['be_report'] = \app\common\model\PlatformDemand::field('a.id second_id,a.title second_title')
- ->alias('a')
- ->where('a.id', $val['object_info']['first_id'])
- ->find()->toArray();
- break;
- }
- });
- }
- /**
- * 删除
- * @auth true
- * @menu true
- */
- public function del()
- {
- $this->_save($this->table, ['is_deleted' => 1]);
- }
- /**
- * 批量删除
- * @auth true
- * @menu true
- */
- public function remove()
- {
- $this->_save($this->table, ['is_deleted' => 1]);
- }
- /**
- * 回复
- * @auth true
- * @menu true
- */
- public function edit()
- {
- $this->title = '回复';
- $this->_form($this->table,'form');
- }
- protected function _form_filter(&$data)
- {
- if($this->request->action() == 'edit' && $this->request->isGet())
- {
- $data['title'] = \app\common\model\ArticleIntro::where('id',$data['report_id'])->value('title');
- }
- }
- }
|