作者 庄敏学

增加定义列

... ... @@ -25,8 +25,9 @@ const (
)
type EntryItem struct {
Title string `json:"title" comment:"填写标题"`
HintText string `json:"hintText" comment:"文本内容提示"`
Title string `json:"title" comment:"填写标题"`
HintText string `json:"hintText" comment:"文本内容提示"`
Definition string `json:"definition" comment:"定义"`
}
// NodeContent 评估内容
... ...
... ... @@ -106,8 +106,9 @@ func (controller *ImportController) parseTemplateNodeContent(data []*domain.Perf
for i3 := range module.Target {
target := module.Target[i3]
nc.EntryItems = append(nc.EntryItems, &domain.EntryItem{
Title: target.Task, // 输入型标题
HintText: target.Definition, // 输入项提示文本
Title: target.Task, // 输入型标题
HintText: "", // 输入项提示文本
Definition: target.Definition, //定义
})
}
// 没有任何输入项时,默认1个
... ...