Complain.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use library\tools\Data;
  17. use think\Db;
  18. /**
  19. * 用户投诉
  20. * Class GoodsCate
  21. * @package app\store\controller
  22. */
  23. class Complain extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'StoreComplain';
  30. /**
  31. * 装修需求管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '用户投诉管理';
  43. $query = $this->_query($this->table);
  44. $where[]=['a.status','=',1];
  45. if($this->request->request('phone')){
  46. $where[]=['m.phone','like','%'.$this->request->request('phone').'%'];
  47. }
  48. if($this->request->request('name')){
  49. $where[]=['m.name','like','%'.$this->request->request('name').'%'];
  50. }
  51. if($this->request->request('question')){
  52. $where[]=['a.question','like','%'.$this->request->request('question').'%'];
  53. }
  54. $query
  55. ->alias('a')
  56. ->join('store_member m','a.user_id = m.id')
  57. ->where($where)
  58. ->order('a.id desc')
  59. ->page();
  60. }
  61. /**需求列表处理
  62. * @param array $data
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. * @throws \think\exception\DbException
  66. */
  67. protected function _index_page_filter(array &$data)
  68. {
  69. $mids = array_unique(array_merge(array_column($data, 'user_id'), array_column($data, 'from_mid')));
  70. $memberList = Db::name('StoreMember')->whereIn('id', $mids)->select();
  71. foreach ($data as &$vo) {
  72. if($vo['images']){
  73. $vo['images'] = image_path($vo['images']);
  74. }
  75. list($vo['member'], $vo['from_member'], $vo['list']) = [[], [], []];
  76. foreach ($memberList as $member) if ($member['id'] === $vo['user_id']) {
  77. $vo['member'] = $member;
  78. }
  79. }
  80. }
  81. }