Card 卡片
<view class="page__hd">
<view class="page__title">Card</view>
<view class="page__desc">卡片</view>
</view>
<view class="page__bd">
<view class="sub-title">Default</view>
<wux-card title="卡片标题" extra="额外内容">
<view slot="body">卡片内容</view>
<view slot="footer">尾部内容</view>
</wux-card>
</wux-wing-blank>
<view class="sub-title">Thumb</view>
<wux-wing-blank size="default">
<wux-card title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png">
<view slot="footer">尾部内容</view>
</wux-card>
</wux-wing-blank>
<view class="sub-title">Custom thumb style</view>
<wux-wing-blank size="default">
<wux-card title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png" thumb-style="border-radius: 50%;">
<view slot="footer">尾部内容</view>
</wux-card>
</wux-wing-blank>
<view class="sub-title">No border</view>
<wux-wing-blank size="default">
<wux-card bordered="{{ false }}" title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png">
<view slot="body">卡片内容</view>
<view slot="footer">尾部内容</view>
</wux-wing-blank>
<view class="sub-title">Full</view>
<wux-card full="{{ true }}" title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png">
<view slot="body">卡片内容</view>
<view slot="footer">尾部内容</view>
</wux-card>
</view>
Card