Search.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\BusinessModel;
  5. use app\common\model\Protable;
  6. use think\Db;
  7. /**
  8. * 搜索
  9. */
  10. class Search extends Api
  11. {
  12. protected $noNeedLogin = ['search', 'Info', 'listInfo', 'qustion', 'qustionInfo', 'buildInfo', 'protable', 'trueTime', 'chooseTime', 'GgInfo'];
  13. protected $noNeedRight = ['*'];
  14. /**
  15. * 搜索
  16. * @param string $search 搜索内容
  17. */
  18. public function search()
  19. {
  20. $search = $this->request->get('search');
  21. if (empty($search)) return $this->error('请输入搜索内容');
  22. $data1 = BusinessModel::where('switch',1)->where('title','like',"%".$search."%")->select();
  23. $data2 = Protable::where('switch',1)->where('name','like',"%".$search."%")->select();
  24. $data3 = \app\admin\model\User::where('group_id',2)
  25. ->where('shenhe_status',2)
  26. ->where('status',1)
  27. ->field('id,group_id,username,nickname,mobile,avatar,company,prevtime,logintime,jointime')
  28. ->where('username|company','like',"%".$search."%")
  29. ->select();
  30. // if (!empty($data1)) {
  31. // foreach ($data1 as $k=>$v) {
  32. // $data1[$k]['image'] = config('site.httpurl').$data1[$k]['image'];
  33. // $data1[$k]['type'] = 1;
  34. // }
  35. // }
  36. if (!empty($data2)) {
  37. foreach ($data2 as $m=>$n) {
  38. // $data2[$m]['image'] = config('site.httpurl').$data2[$m]['image'];
  39. $data2[$m]['type'] = 2;
  40. }
  41. }
  42. if (!empty($data3)) {
  43. foreach ($data3 as $y=>$z) {
  44. // $data3[$y]['image'] = config('site.httpurl').$data3[$y]['image'];
  45. $data3[$y]['type'] = 3;
  46. $data3[$y]['info'] = Db::name('user_qiye')->where('uid',$z['id'])->find();
  47. }
  48. }
  49. $data = array_merge($data1,$data2,$data3);
  50. return json(['code'=>1,'data'=>$data]);
  51. }
  52. }