index.axml 477 B

123456789101112131415161718
  1. <wrapper>
  2. <view class="img-container">
  3. <default-img
  4. className="{{isNoStock ? 'img no-stock-back': 'img' }}"
  5. src="{{imgSrc}}"
  6. height="{{height}}"
  7. width="{{width}}"
  8. borderRadius="{{borderRadius}}"
  9. />
  10. <view
  11. a:if="{{isNoStock}}"
  12. class="img-no-stock"
  13. style="height: {{stockHight}};width: {{width}}; border-radius: 0 0 {{borderRadius}} {{borderRadius}}"
  14. >
  15. <slot>补货中</slot>
  16. </view>
  17. </view>
  18. </wrapper>