zhangqian
2023-08-28 e517b1a99b6edfa24c8cc4e109a6a10488f23b6a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package system
 
import (
    "github.com/gin-gonic/gin"
    v1 "srm/api/v1"
    "srm/middleware"
)
 
type MenuRouter struct{}
 
func (s *MenuRouter) InitMenuRouter(Router *gin.RouterGroup) (R gin.IRoutes) {
    menuRouter := Router.Group("menu").Use(middleware.OperationRecord())
    menuRouterWithoutRecord := Router.Group("menu")
    authorityMenuApi := v1.ApiGroupApp.SystemApiGroup.AuthorityMenuApi
    {
        menuRouter.POST("addBaseMenu", authorityMenuApi.AddBaseMenu)           // 新增菜单
        menuRouter.POST("addMenuAuthority", authorityMenuApi.AddMenuAuthority) //    增加menu和角色关联关系
        menuRouter.POST("deleteBaseMenu", authorityMenuApi.DeleteBaseMenu)     // 删除菜单
        menuRouter.POST("updateBaseMenu", authorityMenuApi.UpdateBaseMenu)     // 更新菜单
    }
    {
        menuRouterWithoutRecord.POST("getMenu", authorityMenuApi.GetMenu)                   // 获取菜单树
        menuRouterWithoutRecord.POST("getMenuList", authorityMenuApi.GetMenuList)           // 分页获取基础menu列表
        menuRouterWithoutRecord.POST("getBaseMenuTree", authorityMenuApi.GetBaseMenuTree)   // 获取用户动态路由
        menuRouterWithoutRecord.POST("getMenuAuthority", authorityMenuApi.GetMenuAuthority) // 获取指定角色menu
        menuRouterWithoutRecord.POST("getBaseMenuById", authorityMenuApi.GetBaseMenuById)   // 根据id获取菜单
    }
    return menuRouter
}