[feat] GridLayout 字段调整

This commit is contained in:
what 2023-09-18 17:30:31 +08:00
parent 2cbbe63064
commit 71ecc0bb16

View File

@ -9,7 +9,7 @@ type GridLayout struct {
MarginX int `db:"marginX"` // 栅格 x 间距 MarginX int `db:"marginX"` // 栅格 x 间距
MarginY int `db:"marginY"` // 栅格 y 间距 MarginY int `db:"marginY"` // 栅格 y 间距
Cols int `db:"cols"` // 网格列基数 Cols int `db:"cols"` // 网格列基数
RowHeight int `db:"rowHeight"` // 栅格行高 RowHeight float32 `db:"rowHeight"` // 栅格行高
Css map[string]any `db:"css"` // 布局CSS Css map[string]any `db:"css"` // 布局CSS
Props []any `db:"props"` // 布局PROPS Props []any `db:"props"` // 布局PROPS
Roles []string `db:"roles"` Roles []string `db:"roles"`