|
|
@@ -81,10 +81,11 @@ func route(r *gin.RouterGroup) { |
|
|
|
} |
|
|
|
|
|
|
|
func rComm(r *gin.RouterGroup) { |
|
|
|
r.StaticFS("/upload", http.Dir("./static/upload")) |
|
|
|
r.POST("/uploadFile", hdl.UploadFile) // 上传文件 |
|
|
|
r.GET("/getBaseInfo", hdl.GetBaseInfo) // 获取系统信息 |
|
|
|
r.POST("/getMenuList", hdl.MenuList) // 获取菜单栏列表 |
|
|
|
d r.StaticFS("/upload", http.Dir("./static/upload")) |
|
|
|
r.Use(mw.CheckPermission) // 检测权限 |
|
|
|
r.POST("/uploadFile", hdl.UploadFile) // 上传文件 |
|
|
|
r.POST("/getMenuList", hdl.MenuList) // 获取菜单栏列表 |
|
|
|
} |
|
|
|
|
|
|
|
func rSetCenter(r *gin.RouterGroup) { |
|
|
|