作者 lyh

gx

@@ -53,6 +53,8 @@ class ManagerLogController extends BaseController @@ -53,6 +53,8 @@ class ManagerLogController extends BaseController
53 $ids = $managerModel->where('mobile', 'like', '%' . $this->map['mobile'] . '%')->pluck('id')->toArray(); 53 $ids = $managerModel->where('mobile', 'like', '%' . $this->map['mobile'] . '%')->pluck('id')->toArray();
54 $map['manage_id'] = ['in',$ids]; 54 $map['manage_id'] = ['in',$ids];
55 }elseif (isset($this->map['name']) && !empty($this->map['name'])){ 55 }elseif (isset($this->map['name']) && !empty($this->map['name'])){
  56 + var_dump($this->map['name']);
  57 + die();
56 $ids = $managerModel->where($this->map['name'])->pluck('id')->toArray(); 58 $ids = $managerModel->where($this->map['name'])->pluck('id')->toArray();
57 $map['manage_id'] = ['in',$ids]; 59 $map['manage_id'] = ['in',$ids];
58 } 60 }