1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\model\BusinessModel;
- use app\common\model\Protable;
- use think\Db;
- /**
- * 搜索
- */
- class Search extends Api
- {
- protected $noNeedLogin = ['search', 'Info', 'listInfo', 'qustion', 'qustionInfo', 'buildInfo', 'protable', 'trueTime', 'chooseTime', 'GgInfo'];
- protected $noNeedRight = ['*'];
- /**
- * 搜索
- * @param string $search 搜索内容
- */
- public function search()
- {
- $search = $this->request->get('search');
- if (empty($search)) return $this->error('请输入搜索内容');
- $data1 = BusinessModel::where('switch',1)->where('title','like',"%".$search."%")->select();
- $data2 = Protable::where('switch',1)->where('name','like',"%".$search."%")->select();
- $data3 = \app\admin\model\User::where('group_id',2)
- ->where('shenhe_status',2)
- ->where('status',1)
- ->field('id,group_id,username,nickname,mobile,avatar,company,prevtime,logintime,jointime')
- ->where('username|company','like',"%".$search."%")
- ->select();
- // if (!empty($data1)) {
- // foreach ($data1 as $k=>$v) {
- // $data1[$k]['image'] = config('site.httpurl').$data1[$k]['image'];
- // $data1[$k]['type'] = 1;
- // }
- // }
- if (!empty($data2)) {
- foreach ($data2 as $m=>$n) {
- // $data2[$m]['image'] = config('site.httpurl').$data2[$m]['image'];
- $data2[$m]['type'] = 2;
- }
- }
- if (!empty($data3)) {
- foreach ($data3 as $y=>$z) {
- // $data3[$y]['image'] = config('site.httpurl').$data3[$y]['image'];
- $data3[$y]['type'] = 3;
- $data3[$y]['info'] = Db::name('user_qiye')->where('uid',$z['id'])->find();
- }
- }
- $data = array_merge($data1,$data2,$data3);
- return json(['code'=>1,'data'=>$data]);
- }
- }
|