正在显示
2 个修改的文件
包含
8 行增加
和
8 行删除
@@ -455,13 +455,13 @@ type ChanceDetail struct { | @@ -455,13 +455,13 @@ type ChanceDetail struct { | ||
455 | 455 | ||
456 | //模板 | 456 | //模板 |
457 | type Template struct { | 457 | type Template struct { |
458 | - Id int64 `json:"id"` | ||
459 | - Name string `json:"name"` | ||
460 | - Doc string `json:"doc"` | ||
461 | - Icon string `json:"icon"` | ||
462 | - FormList []*Form `json:"formList"` | ||
463 | - Question []*CheckQuestion `json:"question"` | ||
464 | - Link string `json:"link"` //示例 | 458 | + Id int64 `json:"id"` |
459 | + Name string `json:"name"` | ||
460 | + Doc string `json:"doc"` | ||
461 | + Icon string `json:"icon"` | ||
462 | + FormList []*Form `json:"formList"` | ||
463 | + Questions []*CheckQuestion `json:"questions"` | ||
464 | + Link string `json:"link"` //示例 | ||
465 | } | 465 | } |
466 | 466 | ||
467 | //表单 | 467 | //表单 |
@@ -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 | } |
-
请 注册 或 登录 后发表评论