Discuss.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 影评管理
  7. * Class FilmList
  8. * @package app\store\controller
  9. */
  10. class Discuss extends Controller
  11. {
  12. protected $table = 'FilmComment';
  13. /**
  14. * @auth true
  15. * @menu true
  16. * 影评列表
  17. */
  18. public function index(){
  19. $this->title = '影评列表';
  20. $f_id = input('f_id');
  21. $this->film = Db::table('film_list')->find($f_id);
  22. $this->_query($this->table)
  23. ->alias('c')
  24. ->field('c.*,m.name as user_name , o.price_total')
  25. ->join('store_member m','c.uid = m.id',"LEFT")
  26. ->join('ticket_order o','c.order_id = o.id','LEFT')
  27. ->where(['c.f_id'=>$f_id])
  28. ->order('id desc')
  29. ->page();
  30. }
  31. /**
  32. * @auth true
  33. * @menu true
  34. * 数据处理
  35. * @param array $data
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. */
  40. protected function _index_page_filter(array &$data)
  41. {
  42. $mids = array_unique(array_column($data, 'uid'));
  43. $memberList = Db::name('StoreMember')->whereIn('id', $mids)->select();
  44. foreach ($data as &$vo) {
  45. if($vo['images']) $vo['images'] = explode(',',$vo['images']);
  46. foreach ($memberList as $member){
  47. if ($member['id'] === $vo['uid']) $vo['member'] = $member;
  48. }
  49. }
  50. }
  51. }