[bugfix] Cell: title slot width (#642)

This commit is contained in:
neverland 2018-09-26 15:38:57 +08:00 committed by GitHub
parent 6c175652bf
commit 6ead035fe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,14 +11,15 @@
<slot wx:else name="icon" /> <slot wx:else name="icon" />
<view <view
wx:if="{{ title }}"
style="{{ titleStyle }}" style="{{ titleStyle }}"
class="van-cell__title title-class" class="van-cell__title title-class"
> >
{{ title }} <block wx:if="{{ title }}">
<view wx:if="{{ label }}" class="van-cell__label label-class">{{ label }}</view> {{ title }}
<view wx:if="{{ label }}" class="van-cell__label label-class">{{ label }}</view>
</block>
<slot wx:else name="title" />
</view> </view>
<slot name="title" />
<view class="van-cell__value value-class"> <view class="van-cell__value value-class">
<view wx:if="{{ value }}">{{ value }}</view> <view wx:if="{{ value }}">{{ value }}</view>