作者 yangfu

自查

@@ -460,7 +460,7 @@ type Template struct { @@ -460,7 +460,7 @@ type Template struct {
460 Doc string `json:"doc"` 460 Doc string `json:"doc"`
461 Icon string `json:"icon"` 461 Icon string `json:"icon"`
462 FormList []*Form `json:"formList"` 462 FormList []*Form `json:"formList"`
463 - Question []*CheckQuestion `json:"question"` 463 + Questions []*CheckQuestion `json:"questions"`
464 Link string `json:"link"` //示例 464 Link string `json:"link"` //示例
465 } 465 }
466 466
@@ -292,7 +292,7 @@ func Template(header *protocol.RequestHeader, request *protocol.TemplateRequest) @@ -292,7 +292,7 @@ func Template(header *protocol.RequestHeader, request *protocol.TemplateRequest)
292 if len(item.Example) > 0 { 292 if len(item.Example) > 0 {
293 template.Link = fmt.Sprintf("%v/#/ability/opportunity?id=%v", beego.AppConfig.String("h5_host"), item.Id) 293 template.Link = fmt.Sprintf("%v/#/ability/opportunity?id=%v", beego.AppConfig.String("h5_host"), item.Id)
294 } 294 }
295 - if template.Question, err = agg.GetCheckQuestionsByTemplateId(templates.Id); err != nil { 295 + if template.Questions, err = agg.GetCheckQuestionsByTemplateId(templates.Id); err != nil {
296 log.Error(err) 296 log.Error(err)
297 return 297 return
298 } 298 }