fix(field): fix empty label render (#3756)

fix #3754, fix #3750
This commit is contained in:
rex 2020-11-12 22:37:45 +08:00 committed by GitHub
parent 805d426dca
commit 2ea15ef256
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,9 +19,7 @@
<view wx:if="{{ label }}" class="label-class {{ utils.bem('field__label', { disabled }) }}" slot="title">
{{ label }}
</view>
<view wx:else slot="title" class="label-class">
<slot name="label" />
</view>
<slot wx:else name="label" slot="title" />
<view class="{{ utils.bem('field__body', [type]) }}">
<textarea
wx:if="{{ type === 'textarea' }}"