소스 검색

update

master
shenjiachi 1 주 전
부모
커밋
30fe9f4cba
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      app/router/router.go

+ 3
- 3
app/router/router.go 파일 보기

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


불러오는 중...
취소
저장