mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 14:40:12 +01:00
✨ Database kanban view https://github.com/siyuan-note/siyuan/issues/8873
Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
parent
4fe334a9f8
commit
404068b91b
4 changed files with 22 additions and 18 deletions
|
|
@ -58,15 +58,16 @@ type ViewKanbanField struct {
|
|||
type Kanban struct {
|
||||
*BaseInstance
|
||||
|
||||
CoverFrom CoverFrom `json:"coverFrom"` // 封面来源
|
||||
CoverFromAssetKeyID string `json:"coverFromAssetKeyID,omitempty"` // 资源字段 ID,CoverFrom 为 CoverFromAssetField 时有效
|
||||
CardAspectRatio CardAspectRatio `json:"cardAspectRatio"` // 卡片宽高比
|
||||
CardSize CardSize `json:"cardSize"` // 卡片大小
|
||||
FitImage bool `json:"fitImage"` // 是否适应封面图片大小
|
||||
DisplayFieldName bool `json:"displayFieldName"` // 是否显示字段名称
|
||||
Fields []*KanbanField `json:"fields"` // 卡片字段
|
||||
Cards []*KanbanCard `json:"cards"` // 卡片
|
||||
CardCount int `json:"rowCount"` // 总卡片数
|
||||
CoverFrom CoverFrom `json:"coverFrom"` // 封面来源
|
||||
CoverFromAssetKeyID string `json:"coverFromAssetKeyID,omitempty"` // 资源字段 ID,CoverFrom 为 CoverFromAssetField 时有效
|
||||
CardAspectRatio CardAspectRatio `json:"cardAspectRatio"` // 卡片宽高比
|
||||
CardSize CardSize `json:"cardSize"` // 卡片大小
|
||||
FitImage bool `json:"fitImage"` // 是否适应封面图片大小
|
||||
DisplayFieldName bool `json:"displayFieldName"` // 是否显示字段名称
|
||||
FillColBackgroundColor bool `json:"fillColBackgroundColor"` // 是否填充列背景颜色
|
||||
Fields []*KanbanField `json:"fields"` // 卡片字段
|
||||
Cards []*KanbanCard `json:"cards"` // 卡片
|
||||
CardCount int `json:"rowCount"` // 总卡片数
|
||||
}
|
||||
|
||||
// KanbanCard 描述了看板实例卡片的结构。
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue