Browse Source

update

master
shenjiachi 1 week ago
parent
commit
30fe9f4cba
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/router/router.go

+ 3
- 3
app/router/router.go View File

@@ -51,9 +51,9 @@ func Init() *gin.Engine {
func route(r *gin.RouterGroup) {
r.GET("/test", hdl.Demo)
r.POST("/login", hdl.Login)
//r.Use(mw.Auth) // 以下接口需要JWT验证
r.Use(mw.Auth) // 以下接口需要JWT验证
rComm(r.Group("/comm"))
//r.Use(mw.CheckPermission) // 检测权限
r.Use(mw.CheckPermission) // 检测权限
rInstitutionalManagement(r.Group("/institutionalManagement"))
}

@@ -88,7 +88,7 @@ func rInstitutionalManagement(r *gin.RouterGroup) { //制度管理
{
rEggEnergy.GET("/getBasic", egg_energy.GetEggEnergyBasic)
rEggEnergy.POST("/updateBasic", egg_energy.UpdateEggEnergyBasic)
rEggEnergyUserCoin := rPublicPlatoon.Group("/userCoin")
rEggEnergyUserCoin := rEggEnergy.Group("/userCoin")
{
rEggEnergyUserCoin.POST("/activePointsUserCoinList", egg_energy.GetActivePointsUserCoinList)
rEggEnergyUserCoin.POST("/activePointsUserCoinFlowList", egg_energy.GetActivePointsUserCoinFlowList)


Loading…
Cancel
Save