From 964c25efe175e0dbf76762748347c512dd7cc69c Mon Sep 17 00:00:00 2001 From: what Date: Tue, 24 Sep 2024 15:21:12 +0800 Subject: [PATCH] =?UTF-8?q?[feat]=20=E6=96=B0=E5=A2=9E=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E5=88=86=E7=BB=84=E6=A0=87=E8=AF=86=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base/grid_layout_form.go | 1 + base/grid_layout_form_field.go | 1 + 2 files changed, 2 insertions(+) diff --git a/base/grid_layout_form.go b/base/grid_layout_form.go index 1901e25..6c64b9b 100644 --- a/base/grid_layout_form.go +++ b/base/grid_layout_form.go @@ -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"` diff --git a/base/grid_layout_form_field.go b/base/grid_layout_form_field.go index 5db23cb..eeeced3 100644 --- a/base/grid_layout_form_field.go +++ b/base/grid_layout_form_field.go @@ -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"`