feat:优化项目信息

This commit is contained in:
henry
2022-02-09 17:35:31 +08:00
parent 2d8be509b7
commit 56e8243724
15 changed files with 357 additions and 54 deletions

View File

@ -302,6 +302,9 @@ 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("/expert/patent", _api.ExpertPatent)
manage.POST("/expert/patent/bind", _api.ExpertPatentBind(true))
manage.POST("/expert/patent/unbind", _api.ExpertPatentBind(false))
manage.POST("/research", _api.Research)
manage.POST("/research/select", _api.ResearchSelect)
manage.POST("/research/add", _api.ResearchForm)