feat:完善项目信息

This commit is contained in:
henry
2022-01-19 16:03:47 +08:00
parent 417d7961ec
commit 6adf1381d0
9 changed files with 271 additions and 25 deletions

View File

@ -295,6 +295,12 @@ func registerAdminAPI(app *gin.Engine) {
manage.POST("/expert/edit", _api.ExpertForm)
manage.POST("/expert/detail", _api.ExpertDetail)
manage.POST("/expert/examine", _api.ExpertExamine)
manage.POST("/research", _api.Research)
manage.POST("/research/select", _api.ResearchSelect)
//manage.POST("/research/add", _api.ResearchForm)
//manage.POST("/research/edit", _api.ResearchForm)
manage.POST("/research/detail", _api.ResearchDetail)
manage.POST("/research/examine", _api.ResearchExamine)
}
// Service 服务管理
service := v1.Group("/service")