From 895528e82ca09fbb044689509da26cb7a7c3b12b Mon Sep 17 00:00:00 2001 From: what Date: Tue, 24 Sep 2024 15:35:34 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20=E8=B0=83=E6=95=B4=20GridLayoutForm=20G?= =?UTF-8?q?roups=20=E5=AD=97=E6=AE=B5=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base/grid_layout_form.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/grid_layout_form.go b/base/grid_layout_form.go index 6c64b9b..23dfab9 100644 --- a/base/grid_layout_form.go +++ b/base/grid_layout_form.go @@ -14,7 +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"` // 表单分组 + Groups []map[string]any `db:"groups"` // 表单分组 ListenChangeFields []string `db:"listenChangeFields"` // 监听字段 ListenChangeFieldsFunc string `db:"listenChangeFieldsFunc"` // 监听字段回调方法 Platform string `db:"platform"`