- ListCardItem ⇐
BaseCard
ListCardItem 多图片文本列表项
- ListCard ⇐
BaseCard
ListCard 多图片文本卡片
ListCardItem 多图片文本列表项
Kind: global class
Extends: BaseCard
ListCard 多图片文本卡片
Kind: global class
Extends: BaseCard
- ListCard ⇐
BaseCard
- instance
- static
添加一个图片项
Kind: instance method of ListCard
Access: public
Param | Type | Description |
---|---|---|
listCardItem | ListCardItem |
列表项 |
Example
let listCardItem = new ListCardItem();
listCardItem.setTitle('标题');
listCardItem.setContent('内容');
listCardItem.setUrl('http://wwww.');
listCardItem.setImage('http://wwww.image');
let listCard = new ListCard();
listCard.addItem(listCardItem);
Kind: static property of ListCard
Access: public