作者 唐旭辉

提交

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