card.wxml 1009 B

1234567891011121314151617
  1. <view class="tui-card-class tui-card {{full?'tui-card-full':''}} {{border?'tui-card-border':''}}" bindtap="handleClick" bindlongtap="longTap">
  2. <view class="tui-card-header {{header.line?'tui-header-line':''}}" style="background:{{header.bgcolor || '#fff'}};">
  3. <view class="tui-header-left">
  4. <image src='{{image.url}}' class="tui-header-thumb {{image.circle?'tui-thumb-circle':''}}" mode="widthFix" wx:if="{{image.url}}" style="height:{{image.height || 60}}rpx;width:{{image.width || 60}}rpx"></image>
  5. <text class="tui-header-title" style="font-size:{{title.size || 30}}rpx;color:{{title.color || '#7A7A7A'}}" wx:if="{{title.text}}">{{title.text}}</text>
  6. </view>
  7. <view class="tui-header-right" style="font-size:{{tag.size || 24}}rpx;color:{{tag.color || '#b2b2b2'}}" wx:if="{{tag.text}}">
  8. {{tag.text}}
  9. </view>
  10. </view>
  11. <view class="tui-card-body">
  12. <slot name="body"></slot>
  13. </view>
  14. <view class="tui-card-footer">
  15. <slot name="footer"></slot>
  16. </view>
  17. </view>