|
...
|
...
|
@@ -21,6 +21,9 @@ class ProjectDeptController extends BaseController |
|
|
|
* @time :2023/6/17 16:13
|
|
|
|
*/
|
|
|
|
public function lists(DeptLogic $deptLogic){
|
|
|
|
if(isset($this->map['title']) && !empty($this->map['title'])){
|
|
|
|
$this->map['title'] = ['like','%'.$this->map['title'].'%'];
|
|
|
|
}
|
|
|
|
$lists = $deptLogic->DeptLists($this->map,$this->page,$this->row,$this->order);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
...
|
...
|
|