index.wxml 715 B

123456789101112131415
  1. <view wx:if="{{loading}}" class="l-skeleton-container l-class">
  2. <view wx:if="{{avatar}}" class="l-avatar-class l-skeleton-avatar bg {{active?'active':''}} l-skeleton-avatar-{{avatarShape}}" style="width:{{avatarSize}};height:{{avatarSize}}"></view>
  3. <view class="l-skeleton-right">
  4. <view wx:if="{{title}}" class="l-skeleton-title-container" style="height:{{avatarSize}}">
  5. <view class="l-skeleton-title bg {{active?'active':''}}" style="height:{{titleHeight}}"></view>
  6. </view>
  7. <view wx:if="{{paragraph}}" wx:for="{{r}}" wx:key="index" class="l-row-class l-skeleton-rows bg {{active?'active':''}}" style="height:{{item.height}};width:{{item.width}}"></view>
  8. </view>
  9. </view>
  10. <slot wx:else/>