[bugfix] Radio: fix label-position not work

fix #1738
This commit is contained in:
rex 2019-07-15 11:45:51 +08:00 committed by GitHub
parent 56c3f5529b
commit a3516bfb5e
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

@ -1,6 +1,13 @@
<wxs src="../wxs/utils.wxs" module="utils" />
<view class="van-radio custom-class">
<view
wx:if="{{ labelPosition === 'left' }}"
class="label-class {{ utils.bem('radio__label', [labelPosition, { disabled }]) }}"
bindtap="onClickLabel"
>
<slot />
</view>
<view class="van-radio__icon-wrap" bindtap="onChange">
<slot wx:if="{{ useIconSlot }}" name="icon" />
<van-icon
@ -12,7 +19,11 @@
custom-style="line-height: 20px;"
/>
</view>
<view class="label-class {{ utils.bem('radio__label', [labelPosition, { disabled }]) }}" bindtap="onClickLabel">
<view
wx:if="{{ labelPosition === 'right' }}"
class="label-class {{ utils.bem('radio__label', [labelPosition, { disabled }]) }}"
bindtap="onClickLabel"
>
<slot />
</view>
</view>