feat:完善项目信息
This commit is contained in:
@ -281,6 +281,17 @@ func registerAdminAPI(app *gin.Engine) {
|
||||
role.POST("/auth", _api.Auth)
|
||||
role.POST("/auth/bind", _api.AuthBind)
|
||||
}
|
||||
// Manage 项目管理
|
||||
manage := v1.Group("/manage")
|
||||
{
|
||||
_api := new(api1.Manage)
|
||||
manage.POST("/company", _api.Company)
|
||||
manage.POST("/company/detail", _api.CompanyDetail)
|
||||
manage.POST("/company/examine", _api.CompanyExamine)
|
||||
manage.POST("/expert", _api.Expert)
|
||||
manage.POST("/expert/detail", _api.ExpertDetail)
|
||||
manage.POST("/expert/examine", _api.ExpertExamine)
|
||||
}
|
||||
// Service 服务管理
|
||||
service := v1.Group("/service")
|
||||
{
|
||||
|
Reference in New Issue
Block a user