Card 卡片

    1. <view class="page__hd">
    2. <view class="page__title">Card</view>
    3. <view class="page__desc">卡片</view>
    4. </view>
    5. <view class="page__bd">
    6. <view class="sub-title">Default</view>
    7. <wux-card title="卡片标题" extra="额外内容">
    8. <view slot="body">卡片内容</view>
    9. <view slot="footer">尾部内容</view>
    10. </wux-card>
    11. </wux-wing-blank>
    12. <view class="sub-title">Thumb</view>
    13. <wux-wing-blank size="default">
    14. <wux-card title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png">
    15. <view slot="footer">尾部内容</view>
    16. </wux-card>
    17. </wux-wing-blank>
    18. <view class="sub-title">Custom thumb style</view>
    19. <wux-wing-blank size="default">
    20. <wux-card title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png" thumb-style="border-radius: 50%;">
    21. <view slot="footer">尾部内容</view>
    22. </wux-card>
    23. </wux-wing-blank>
    24. <view class="sub-title">No border</view>
    25. <wux-wing-blank size="default">
    26. <wux-card bordered="{{ false }}" title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png">
    27. <view slot="body">卡片内容</view>
    28. <view slot="footer">尾部内容</view>
    29. </wux-wing-blank>
    30. <view class="sub-title">Full</view>
    31. <wux-card full="{{ true }}" title="卡片标题" extra="额外内容" thumb="https://wux.cdn.cloverstd.com/logo.png">
    32. <view slot="body">卡片内容</view>
    33. <view slot="footer">尾部内容</view>
    34. </wux-card>
    35. </view>

    Card