switch.wxml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <view
  3. style="{{_._style([style, customStyle])}}"
  4. class="{{ prefix }}-class {{classPrefix}}"
  5. bind:tap="handleSwitch"
  6. aria-checked="{{checked}}"
  7. aria-disabled="{{disabled}}"
  8. aria-role="switch"
  9. >
  10. <view
  11. class="{{_.cls(classPrefix + '__body', [['checked', checked], ['disabled', disabled], size])}} {{prefix}}-class-body"
  12. >
  13. <view
  14. class="{{_.cls(classPrefix + '__dot', [['checked', checked], ['plain', label.length != 2 && icon.length != 2 && !loading], size])}} {{prefix}}-class-dot"
  15. aria-hidden="{{true}}"
  16. >
  17. <view
  18. wx:if="{{label}}"
  19. class="{{_.cls(classPrefix + '__label', [['checked', checked], size])}} {{prefix}}-class-label"
  20. >
  21. <t-loading wx:if="{{loading}}" inherit-color size="32rpx" t-class="{{classPrefix}}__loading" />
  22. <text wx:elif="{{label.length == 2}}">{{checked ? label[1] : label[0]}}</text>
  23. <t-icon
  24. wx:elif="{{icon.length == 2}}"
  25. name="{{checked ? icon[1] : icon[0]}}"
  26. t-class="{{_.cls(classPrefix + '__icon', [['checked', checked], size])}}"
  27. />
  28. </view>
  29. </view>
  30. </view>
  31. </view>