|
...
|
...
|
@@ -53,7 +53,7 @@ class ManagerLogController extends BaseController |
|
|
|
$ids = $managerModel->where('mobile', 'like', '%' . $this->map['mobile'] . '%')->pluck('id')->toArray();
|
|
|
|
$map['manage_id'] = ['in',$ids];
|
|
|
|
}elseif (isset($this->map['name']) && !empty($this->map['name'])){
|
|
|
|
$ids = $managerModel->where('name', 'like', '%' . $this->map['name'] . '%')->pluck('id')->toArray();
|
|
|
|
$ids = $managerModel->where($this->map['name'])->pluck('id')->toArray();
|
|
|
|
$map['manage_id'] = ['in',$ids];
|
|
|
|
}
|
|
|
|
if(isset($this->map['created_at'])){
|
...
|
...
|
|