49 lines
1.9 KiB
Plaintext
49 lines
1.9 KiB
Plaintext
<!---------- wxs start ----------->
|
|
<wxs module="utils" src="../wxs/utils.wxs"></wxs>
|
|
<!---------- wxs end ----------->
|
|
|
|
|
|
<view class="custom-class van-card">
|
|
<view class="{{ utils.bem('card__header', { center: centered }) }}">
|
|
<view class="van-card__thumb" bind:tap="onClickThumb">
|
|
<image wx:if="{{ thumb }}" src="{{ thumb }}" mode="{{ thumbMode }}" lazy-load="{{ lazyLoad }}" class="van-card__img thumb-class"></image>
|
|
<slot wx:else="" name="thumb"></slot>
|
|
<van-tag wx:if="{{ tag }}" mark="" type="danger" custom-class="van-card__tag">
|
|
{{ tag }}
|
|
</van-tag>
|
|
<slot wx:else="" name="tag"></slot>
|
|
</view>
|
|
|
|
<view class="van-card__content {{ utils.bem('card__content', { center: centered }) }}">
|
|
<view>
|
|
<view wx:if="{{ title }}" class="van-card__title title-class">{{ title }}</view>
|
|
<slot wx:else="" name="title"></slot>
|
|
|
|
<view wx:if="{{ desc }}" class="van-card__desc desc-class">{{ desc }}</view>
|
|
<slot wx:else="" name="desc"></slot>
|
|
|
|
<slot name="tags"></slot>
|
|
</view>
|
|
|
|
<view class="van-card__bottom">
|
|
<slot name="price-top"></slot>
|
|
<view wx:if="{{ price || price === 0 }}" class="van-card__price price-class">
|
|
<text>{{ currency }}</text>
|
|
<text class="van-card__price-integer">{{ integerStr }}</text>
|
|
<text class="van-card__price-decimal">{{ decimalStr }}</text>
|
|
</view>
|
|
<slot wx:else="" name="price"></slot>
|
|
<view wx:if="{{ originPrice || originPrice === 0 }}" class="van-card__origin-price origin-price-class">{{ currency }} {{ originPrice }}</view>
|
|
<slot wx:else="" name="origin-price"></slot>
|
|
<view wx:if="{{ num }}" class="van-card__num num-class">x {{ num }}</view>
|
|
<slot wx:else="" name="num"></slot>
|
|
<slot name="bottom"></slot>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="van-card__footer">
|
|
<slot name="footer"></slot>
|
|
</view>
|
|
</view>
|