dengbiao 2 个月前
父节点
当前提交
12023f5f4a
共有 4 个文件被更改,包括 5 次插入3 次删除
  1. +1
    -0
      .gitignore
  2. +4
    -3
      app/router/router.go
  3. 二进制
     
  4. 二进制
     

+ 1
- 0
.gitignore 查看文件

@@ -44,3 +44,4 @@ nginx.conf
/tmp/*
.idea/*
/.idea/modules.xml
/static/upload/

+ 4
- 3
app/router/router.go 查看文件

@@ -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) {


二进制
查看文件


二进制
查看文件


正在加载...
取消
保存