feat:完善信息,优化入驻接口

This commit is contained in:
henry
2022-01-28 16:59:15 +08:00
parent 4c57ca2878
commit aafff0f3fd
22 changed files with 275 additions and 137 deletions

View File

@ -291,6 +291,11 @@ func (*Manage) ResearchLaboratory(c *gin.Context) {
api.APIResponse(err, data)(c)
}
func (*Manage) ResearchSelect(c *gin.Context) {
data, err := manage.NewResearch()(api.GetSession()(c).(*session.Enterprise)).Select()
api.APIResponse(err, data)(c)
}
func (*Manage) ResearchVisit(c *gin.Context) {
form := &struct {
CompanyName string `json:"company_name" form:"company_name"`