作者 yangfu

自查

... ... @@ -455,13 +455,13 @@ type ChanceDetail struct {
//模板
type Template struct {
Id int64 `json:"id"`
Name string `json:"name"`
Doc string `json:"doc"`
Icon string `json:"icon"`
FormList []*Form `json:"formList"`
Question []*CheckQuestion `json:"question"`
Link string `json:"link"` //示例
Id int64 `json:"id"`
Name string `json:"name"`
Doc string `json:"doc"`
Icon string `json:"icon"`
FormList []*Form `json:"formList"`
Questions []*CheckQuestion `json:"questions"`
Link string `json:"link"` //示例
}
//表单
... ...
... ... @@ -292,7 +292,7 @@ func Template(header *protocol.RequestHeader, request *protocol.TemplateRequest)
if len(item.Example) > 0 {
template.Link = fmt.Sprintf("%v/#/ability/opportunity?id=%v", beego.AppConfig.String("h5_host"), item.Id)
}
if template.Question, err = agg.GetCheckQuestionsByTemplateId(templates.Id); err != nil {
if template.Questions, err = agg.GetCheckQuestionsByTemplateId(templates.Id); err != nil {
log.Error(err)
return
}
... ...