index.wxml 815 B

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