fix(checkbox): fix label-position not work (#4036)

fix #4017
This commit is contained in:
rex 2021-02-04 14:51:59 +08:00 committed by GitHub
parent cd3b7ef5e6
commit acb8e3506d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 2 deletions

View File

@ -21,7 +21,10 @@ VantComponent({
disabled: Boolean,
useIconSlot: Boolean,
checkedColor: String,
labelPosition: String,
labelPosition: {
type: String,
value: 'right',
},
labelDisabled: Boolean,
shape: {
type: String,

View File

@ -2,6 +2,13 @@
<wxs src="./index.wxs" module="computed" />
<view class="van-checkbox custom-class">
<view
wx:if="{{ labelPosition === 'left' }}"
class="label-class {{ utils.bem('checkbox__label', [labelPosition, { disabled: disabled || parentDisabled }]) }}"
bindtap="onClickLabel"
>
<slot />
</view>
<view class="van-checkbox__icon-wrap" bindtap="toggle">
<slot wx:if="{{ useIconSlot }}" name="icon" />
<van-icon
@ -14,7 +21,11 @@
custom-style="line-height: 1.25em;"
/>
</view>
<view class="label-class {{ utils.bem('checkbox__label', [labelPosition, { disabled: disabled || parentDisabled }]) }}" bindtap="onClickLabel">
<view
wx:if="{{ labelPosition === 'right' }}"
class="label-class {{ utils.bem('checkbox__label', [labelPosition, { disabled: disabled || parentDisabled }]) }}"
bindtap="onClickLabel"
>
<slot />
</view>
</view>