jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/Switch/index.axml

21 lines
744 B
Plaintext
Raw Normal View History

2024-12-01 11:56:54 +00:00
<view
class="ant-switch {{className ? className : ''}} ant-switch-{{size}} {{mixin.value ? 'ant-switch-checked' : ''}} {{disabled ? 'ant-switch-disabled' : ''}} {{loading ? 'ant-switch-loading' : ''}}"
style="{{mixin.value && color ? 'background:' + color + '; border-color:' + color : ''}};{{style || ''}}"
onTap="onChange"
>
2024-11-10 07:01:22 +00:00
<view class="ant-switch-handle">
2024-12-01 11:56:54 +00:00
<ant-icon
a:if="{{loading}}"
type="UndoOutline"
className="ant-switch-loading-icon"
></ant-icon>
2024-11-10 07:01:22 +00:00
</view>
<view class="ant-switch-inner">
2024-12-01 11:56:54 +00:00
<block a:if="{{mixin.value}}">
<slot name="checkedText">{{checkedText}}</slot>
</block>
<block a:else>
<slot name="uncheckedText">{{uncheckedText}}</slot>
</block>
2024-11-10 07:01:22 +00:00
</view>
2024-12-01 11:56:54 +00:00
</view>