badge.wxml 1.0 KB

12345678910111213141516171819202122232425
  1. <wxs src="./badge.wxs" module="this" />
  2. <wxs src="../common/utils.wxs" module="_" />
  3. <view
  4. style="{{_._style([style, customStyle])}}"
  5. class="{{this.getBadgeOuterClass({shape})}} class {{prefix}}-class"
  6. aria-labelledby="{{labelID}}"
  7. aria-describedby="{{descriptionID}}"
  8. aria-role="{{ ariaRole || 'option'}}"
  9. >
  10. <view id="{{labelID}}" class="{{classPrefix}}__content {{prefix}}-class-content" aria-hidden="true">
  11. <slot wx:if="{{!content}}" class="{{classPrefix}}__content-slot" />
  12. <text wx:else class="{{classPrefix}}__content-text">{{content}}</text>
  13. </view>
  14. <view
  15. wx:if="{{this.isShowBadge({dot,count,showZero})}}"
  16. id="{{descriptionID}}"
  17. class="{{this.getBadgeInnerClass({dot, size, shape, count})}} {{prefix}}-has-count {{prefix}}-class-count"
  18. style="{{this.getBadgeStyles({color, offset})}}"
  19. aria-hidden="true"
  20. aria-label="{{ ariaLabel || this.getBadgeAriaLabel({dot, count, maxCount}) }}"
  21. >{{ this.getBadgeValue({dot, count, maxCount}) }}
  22. </view>
  23. <slot name="count" />
  24. </view>