feat:完善后台经纪人审核信息

This commit is contained in:
henry
2022-01-22 16:55:10 +08:00
parent e52cdcf163
commit 5e328ab2da
10 changed files with 271 additions and 4 deletions

View File

@ -309,6 +309,9 @@ func registerAdminAPI(app *gin.Engine) {
manage.POST("/laboratory/edit", _api.LaboratoryForm)
manage.POST("/laboratory/detail", _api.LaboratoryDetail)
manage.POST("/laboratory/examine", _api.LaboratoryExamine)
manage.POST("/agent", _api.Agent)
manage.POST("/agent/detail", _api.AgentDetail)
manage.POST("/agent/examine", _api.AgentExamine)
manage.POST("/enterprise", _api.Enterprise)
manage.POST("/enterprise/delete", _api.EnterpriseDelete)
}