[feat] 新增表单分组标识字段
This commit is contained in:
parent
722d821818
commit
964c25efe1
@ -14,6 +14,7 @@ type GridLayoutForm struct {
|
||||
MarginY int `db:"marginY"` // 栅格 y 间距
|
||||
Cols int `db:"cols"` // 网格列基数
|
||||
FormProps []map[string]string `db:"formProps"` // 表单PROPS
|
||||
Groups []map[string]string `db:"groups"` // 表单分组
|
||||
ListenChangeFields []string `db:"listenChangeFields"` // 监听字段
|
||||
ListenChangeFieldsFunc string `db:"listenChangeFieldsFunc"` // 监听字段回调方法
|
||||
Platform string `db:"platform"`
|
||||
|
@ -3,6 +3,7 @@ package base
|
||||
type GridLayoutFormField struct {
|
||||
Uuid string `db:"uuid"`
|
||||
GridLayoutFormUuid string `db:"grid_layout_form_uuid"` // 所属布局 UUID
|
||||
Group string `db:"group"`
|
||||
Type string `db:"type"`
|
||||
X int `db:"x"`
|
||||
Y int `db:"y"`
|
||||
|
Loading…
Reference in New Issue
Block a user