[bugfix] Card: price zero (#411)

This commit is contained in:
neverland 2018-08-13 09:33:45 +08:00 committed by GitHub
parent 91eef9a596
commit ffdb5c19c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 4 deletions

View File

@ -16,7 +16,6 @@
num="2"
price="2.00"
thumb="{{ imageURL }}"
use-footer-slot="{{ true }}"
>
<div slot="footer">
<van-button size="mini" custom-class="button">按钮</van-button>

View File

@ -33,7 +33,6 @@
num="2"
price="2.00"
thumb="{{ imageURL }}"
use-footer-slot="{{ true }}"
>
<view slot="footer">
<van-button size="mini">按钮</van-button>

View File

@ -4,9 +4,9 @@
<slot wx:else name="thumb" />
</view>
<view class="van-card__content">
<view wx:if="{{ title || price }}" class="van-card__row">
<view wx:if="{{ title || price || price === 0 }}" class="van-card__row">
<view wx:if="{{ title }}" class="van-card__title title-class">{{ title }}</view>
<view wx:if="{{ price }}" class="van-card__price price-class">{{ currency }} {{ price }}</view>
<view wx:if="{{ price || price === 0 }}" class="van-card__price price-class">{{ currency }} {{ price }}</view>
</view>
<slot wx:else name="title" />
<view wx:if="{{ desc || num }}" class="van-card__row">