|
...
|
...
|
@@ -29,19 +29,7 @@ class ProjectMenuController extends BaseController |
|
|
|
* @time :2023/6/21 17:24
|
|
|
|
*/
|
|
|
|
public function lists(ProjectMenuLogic $projectMenuLogic){
|
|
|
|
$lists = $projectMenuLogic->MenuList();
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :添加菜单时获取菜单列表
|
|
|
|
* @name :list
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/6/21 17:24
|
|
|
|
*/
|
|
|
|
public function list(ProjectMenuLogic $projectMenuLogic){
|
|
|
|
$lists = $projectMenuLogic->MenuList();
|
|
|
|
$lists = $projectMenuLogic->MenuList($this->map);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|