|
...
|
...
|
@@ -28,7 +28,7 @@ class KeywordsController extends BaseController |
|
|
|
$ids = $projectDeployOptimizeModel->where('customer_keywords','like','%'.$this->map['search'].'%')
|
|
|
|
->orWhere('main_keywords', 'like' , '%'.$this->map['search'].'%')->pluck('project_id')->toArray();
|
|
|
|
$projectModel = new Project();
|
|
|
|
$lists = $projectModel->lists(['id'=>['in',$ids]],$this->page,$this->row,$this->order);
|
|
|
|
$lists = $projectModel->list(['id'=>['in',$ids]],$this->order);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|