|
@@ -29,19 +29,7 @@ class ProjectMenuController extends BaseController |
|
@@ -29,19 +29,7 @@ class ProjectMenuController extends BaseController |
|
29
|
* @time :2023/6/21 17:24
|
29
|
* @time :2023/6/21 17:24
|
|
30
|
*/
|
30
|
*/
|
|
31
|
public function lists(ProjectMenuLogic $projectMenuLogic){
|
31
|
public function lists(ProjectMenuLogic $projectMenuLogic){
|
|
32
|
- $lists = $projectMenuLogic->MenuList();
|
|
|
|
33
|
- $this->response('success',Code::SUCCESS,$lists);
|
|
|
|
34
|
- }
|
|
|
|
35
|
-
|
|
|
|
36
|
- /**
|
|
|
|
37
|
- * @remark :添加菜单时获取菜单列表
|
|
|
|
38
|
- * @name :list
|
|
|
|
39
|
- * @author :lyh
|
|
|
|
40
|
- * @method :post
|
|
|
|
41
|
- * @time :2023/6/21 17:24
|
|
|
|
42
|
- */
|
|
|
|
43
|
- public function list(ProjectMenuLogic $projectMenuLogic){
|
|
|
|
44
|
- $lists = $projectMenuLogic->MenuList();
|
32
|
+ $lists = $projectMenuLogic->MenuList($this->map);
|
|
45
|
$this->response('success',Code::SUCCESS,$lists);
|
33
|
$this->response('success',Code::SUCCESS,$lists);
|
|
46
|
}
|
34
|
}
|
|
47
|
|
35
|
|