mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-04 07:48:49 +01:00
🎨 Improve av
This commit is contained in:
parent
34f1f6a3d4
commit
db59bdf562
2 changed files with 2 additions and 0 deletions
|
|
@ -197,6 +197,7 @@ type View struct {
|
|||
Groups []*View `json:"groups,omitempty"` // 分组视图列表
|
||||
GroupItemIDs []string `json:"groupItemIds"` // 分组项目 ID 列表,用于维护分组中的所有项目
|
||||
GroupCalc *GroupCalc `json:"groupCalc,omitempty"` // 分组计算规则
|
||||
GroupKey *Key `json:"groupKey,omitempty"` // 分组字段
|
||||
GroupVal *Value `json:"groupVal,omitempty"` // 分组值
|
||||
GroupFolded bool `json:"groupFolded"` // 分组是否折叠
|
||||
GroupHidden int `json:"groupHidden"` // 分组是否隐藏,0:显示,1:空白隐藏,2:手动隐藏
|
||||
|
|
|
|||
|
|
@ -1808,6 +1808,7 @@ func genAttrViewGroups(view *av.View, attrView *av.AttributeView) {
|
|||
}
|
||||
|
||||
v.Name = "" // 分组视图的名称在渲染时才填充
|
||||
v.GroupKey = groupKey
|
||||
v.GroupVal = &av.Value{Type: av.KeyTypeText, Text: &av.ValueText{Content: groupValue}}
|
||||
if av.KeyTypeSelect == groupKey.Type || av.KeyTypeMSelect == groupKey.Type {
|
||||
if opt := groupKey.GetOption(groupValue); nil != opt {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue