作者 yangfu

Merge branch 'dev' of http://gitlab.fjmaimaimai.com/mmm-go/oppmg into dev

@@ -13,13 +13,13 @@ const ( @@ -13,13 +13,13 @@ const (
13 13
14 //InputElement 自定义表单项 14 //InputElement 自定义表单项
15 type InputElement struct { 15 type InputElement struct {
16 - Id int `json:"id"`  
17 - Sort int `json:"sort"` //排序  
18 - Label string `json:"label"` //标题  
19 - InputType string `json:"inputType"` //输入类型  
20 - Required int `json:"required"` //是否必填  
21 - // CurrentValue string `json:"-"` //"当前填写的值"  
22 - SectionType int8 `json:"sectionType"` 16 + Id int `json:"id"`
  17 + Sort int `json:"sort"` //排序
  18 + Label string `json:"label"` //标题
  19 + InputType string `json:"inputType"` //输入类型
  20 + Required int `json:"required"` //是否必填
  21 + CurrentValue string `json:"value"` //"当前填写的值"
  22 + SectionType int8 `json:"sectionType"`
23 // ValueList string `json:"-"` //输入候选值 value_list 23 // ValueList string `json:"-"` //输入候选值 value_list
24 // Placeholder string `json:"-"` //帮助用户填写输入字段的提示 Placeholder 24 // Placeholder string `json:"-"` //帮助用户填写输入字段的提示 Placeholder
25 // Disable bool `json:"-"` //"显示隐藏", 25 // Disable bool `json:"-"` //"显示隐藏",