Documentation ¶
Index ¶
- type ActionElement
- type CardModule
- type Confirm
- type ElemButton
- type ElemDatePicker
- type ElemImage
- type ElemOverflow
- type ElemSelectMenu
- type ElemTextOrImage
- type Element
- type Field
- type I18N
- type ModuleAction
- type ModuleDiv
- type ModuleHR
- type ModuleImg
- type ModuleNote
- type MultiURL
- type Option
- type Text
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActionElement ¶
type ActionElement interface {
// contains filtered or unexported methods
}
type CardModule ¶
type CardModule interface {
// contains filtered or unexported methods
}
div, hr, img, note, action
type ElemButton ¶
type ElemButton struct { Tag string `json:"tag"` // tag=button Text *Text `json:"text"` // 按钮中的文本 URL string `json:"url,omitempty"` // 跳转链接,和multi_url互斥 MultiURL *MultiURL `json:"multi_url,omitempty"` // 多端跳转链接 Type string `json:"type,omitempty"` // 配置按钮样式,默认为"default", "default"/"primary"/"danger" Value map[string]interface{} `json:"value,omitempty"` // 点击后返回业务方 Confirm *Confirm `json:"confirm,omitempty"` // 二次确认的弹框 }
type ElemDatePicker ¶
type ElemDatePicker struct { Tag string `json:"tag"` // 如下三种取值 "date_picker", "picker_time", "picker_datetime" InitialDate string `json:"initial_date,omitempty"` InitialTime string `json:"initial_time,omitempty"` InitialDateTime string `json:"initial_datetime,omitempty"` PlaceHolder *Text `json:"placeholder,omitempty"` Value map[string]interface{} `json:"value,omitempty"` Confirm *Confirm `json:"confirm,omitempty"` }
type ElemImage ¶
type ElemImage struct { Tag string `json:"tag"` // tag=img ImgKey string `json:"img_key"` Alt *Text `json:"alt"` Preview bool `json:"preview,omitemtpy"` }
ElemImage 图像元素,注与图像模块的区别(ElementImg)
type ElemOverflow ¶
type ElemSelectMenu ¶
type ElemSelectMenu struct { Tag string `json:"tag"` // "select_static" / "select_person", 元素标签,选项模式/选人模式 PlaceHolder *Text `json:"place_holder,omitempty"` InitialOption string `json:"initial_option,omitempty"` Options []*Option `json:"option,omitempty"` Value map[string]interface{} `json:"value,omitempty"` Confirm *Confirm `json:"confirm,omitempty"` }
type ElemTextOrImage ¶
type ModuleAction ¶
type ModuleAction struct { Tag string `json:"tag"` Actions []ActionElement `json:"actions"` Layout string `json:"layout,omitemtpy"` // bisected 为二等分布局, trisection 为三等分布局, flow 为流式布局元素会按自身大小横向排列并在空间不够的时候折行 }
ModuleAction 交互模块
type ModuleDiv ¶
type ModuleDiv struct { Tag string `json:"tag"` // div Text *Text `json:"text,omitempty"` // 单个文本展示, 和 field 至少要有一个 Fields []Field `json:"field,omitempty"` // 多个文本展示, 和 text 至少要有一个 Extra *Element `json:"extra,omitempty"` // 展示附加元素, 最多可展示一个元素 }
ModuleDiv 内容模块
type ModuleImg ¶
type ModuleImg struct { Tag string `json:"tag"` // img ImgKey string `json:"img_key"` Title *Text `json:"title"` Mode string `json:"mode,omitempty"` // 图片显示模式: crop_center:居中裁剪模式, fit_horizontal:平铺模式 Alt *Text `json:"text,omitempty"` Preview bool `json:"preview,omitemtpy"` // 点击后是否放大图片,缺省为true。在配置 card_link 后可设置为false,使用户点击卡片上的图片也能响应card_link链接跳转 }
ModuleImg 图片模块
type ModuleNote ¶
type ModuleNote struct { Tag string `json:"tag"` // note Elements []*ElemTextOrImage `json:"elements"` }
ModuleNote 备注模块
type Text ¶
type Text struct { // Tag 支持"plain_text"和"lark_md"两种模式 // https://open.feishu.cn/document/ukTMukTMukTM/uADOwUjLwgDM14CM4ATN Tag string `json:"tag"` Content string `json:"content"` // 文本内容 Lines int `json:"lines,omitempty"` // 内容显示行数, 1 显示行数, lines字段仅支持"plain_text"模式 I18N *I18N `json:"i18n,omitempty"` }
Text 文本对象
Click to show internal directories.
Click to hide internal directories.