mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
92 lines
2.3 KiB
JavaScript
92 lines
2.3 KiB
JavaScript
import { use, isDef } from '../utils';
|
|
import Tag from '../tag';
|
|
|
|
const [sfc, bem] = use('card');
|
|
|
|
export default sfc({
|
|
props: {
|
|
tag: String,
|
|
desc: String,
|
|
thumb: String,
|
|
title: String,
|
|
centered: Boolean,
|
|
lazyLoad: Boolean,
|
|
thumbLink: String,
|
|
num: [Number, String],
|
|
price: [Number, String],
|
|
originPrice: [Number, String],
|
|
currency: {
|
|
type: String,
|
|
default: '¥'
|
|
}
|
|
},
|
|
|
|
render(h) {
|
|
const { thumb, $slots: slots } = this;
|
|
|
|
const showThumb = slots.thumb || thumb;
|
|
const showTag = slots.tag || this.tag;
|
|
const showNum = slots.num || isDef(this.num);
|
|
const showPrice = slots.price || isDef(this.price);
|
|
const showOriginPrice = slots['origin-price'] || isDef(this.originPrice);
|
|
|
|
const Thumb = showThumb && (
|
|
<a href={this.thumbLink} class={bem('thumb')}>
|
|
{slots.thumb ||
|
|
(this.lazyLoad ? (
|
|
<img class={bem('img')} vLazy={thumb} />
|
|
) : (
|
|
<img class={bem('img')} src={thumb} />
|
|
))}
|
|
{showTag && (
|
|
<div class={bem('tag')}>
|
|
{slots.tag || (
|
|
<Tag mark type="danger">
|
|
{this.tag}
|
|
</Tag>
|
|
)}
|
|
</div>
|
|
)}
|
|
</a>
|
|
);
|
|
|
|
const Title = slots.title || (this.title && <div class={bem('title')}>{this.title}</div>);
|
|
|
|
const Desc =
|
|
slots.desc || (this.desc && <div class={[bem('desc'), 'van-ellipsis']}>{this.desc}</div>);
|
|
|
|
const Price = showPrice && (
|
|
<div class={bem('price')}>{slots.price || `${this.currency} ${this.price}`}</div>
|
|
);
|
|
|
|
const OriginPrice = showOriginPrice && (
|
|
<div class={bem('origin-price')}>
|
|
{slots['origin-price'] || `${this.currency} ${this.originPrice}`}
|
|
</div>
|
|
);
|
|
|
|
const Num = showNum && <div class={bem('num')}>{slots.num || `x ${this.num}`}</div>;
|
|
|
|
const Footer = slots.footer && <div class={bem('footer')}>{slots.footer}</div>;
|
|
|
|
return (
|
|
<div class={bem()}>
|
|
<div class={bem('header')}>
|
|
{Thumb}
|
|
<div class={bem('content', { centered: this.centered })}>
|
|
{Title}
|
|
{Desc}
|
|
{slots.tags}
|
|
<div class="van-card__bottom">
|
|
{Price}
|
|
{OriginPrice}
|
|
{Num}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{Footer}
|
|
</div>
|
|
);
|
|
}
|
|
});
|