mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
185 lines
3.8 KiB
TypeScript
185 lines
3.8 KiB
TypeScript
import { use, isDef } from '../utils';
|
|
import { inherit } from '../utils/functional';
|
|
import Tag from '../tag';
|
|
import Image from '../image';
|
|
|
|
// Types
|
|
import { CreateElement, RenderContext } from 'vue/types';
|
|
import { DefaultSlots, ScopedSlot } from '../utils/types';
|
|
|
|
export type CardProps = {
|
|
tag?: string;
|
|
num?: number | string;
|
|
desc?: string;
|
|
thumb?: string;
|
|
title?: string;
|
|
price?: number | string;
|
|
currency: string;
|
|
centered?: boolean;
|
|
lazyLoad?: boolean;
|
|
thumbLink?: string;
|
|
originPrice?: number | string;
|
|
};
|
|
|
|
export type CardSlots = DefaultSlots & {
|
|
num?: ScopedSlot;
|
|
tag?: ScopedSlot;
|
|
tags?: ScopedSlot;
|
|
desc?: ScopedSlot;
|
|
title?: ScopedSlot;
|
|
thumb?: ScopedSlot;
|
|
price?: ScopedSlot;
|
|
footer?: ScopedSlot;
|
|
'origin-price'?: ScopedSlot;
|
|
};
|
|
|
|
export type CardEvents = {
|
|
onClick?(event: Event): void;
|
|
};
|
|
|
|
const [sfc, bem] = use('card');
|
|
|
|
function Card(
|
|
h: CreateElement,
|
|
props: CardProps,
|
|
slots: CardSlots,
|
|
ctx: RenderContext<CardProps>
|
|
) {
|
|
const { thumb } = props;
|
|
|
|
const showNum = slots.num || isDef(props.num);
|
|
const showPrice = slots.price || isDef(props.price);
|
|
const showOriginPrice = slots['origin-price'] || isDef(props.originPrice);
|
|
const showBottom = showNum || showPrice || showOriginPrice;
|
|
|
|
function ThumbTag() {
|
|
if (slots.tag || props.tag) {
|
|
return (
|
|
<div class={bem('tag')}>
|
|
{slots.tag ? (
|
|
slots.tag()
|
|
) : (
|
|
<Tag mark type="danger">
|
|
{props.tag}
|
|
</Tag>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
function Thumb() {
|
|
if (slots.thumb || thumb) {
|
|
return (
|
|
<a href={props.thumbLink} class={bem('thumb')}>
|
|
{slots.thumb ? (
|
|
slots.thumb()
|
|
) : (
|
|
<Image
|
|
src={thumb}
|
|
width="100%"
|
|
height="100%"
|
|
fit="contain"
|
|
lazy-load={props.lazyLoad}
|
|
/>
|
|
)}
|
|
{ThumbTag()}
|
|
</a>
|
|
);
|
|
}
|
|
}
|
|
|
|
function Title() {
|
|
if (slots.title) {
|
|
return slots.title();
|
|
}
|
|
|
|
if (props.title) {
|
|
return <div class={bem('title')}>{props.title}</div>;
|
|
}
|
|
}
|
|
|
|
function Desc() {
|
|
if (slots.desc) {
|
|
return slots.desc();
|
|
}
|
|
|
|
if (props.desc) {
|
|
return <div class={[bem('desc'), 'van-ellipsis']}>{props.desc}</div>;
|
|
}
|
|
}
|
|
|
|
function Price() {
|
|
if (showPrice) {
|
|
return (
|
|
<div class={bem('price')}>
|
|
{slots.price ? slots.price() : `${props.currency} ${props.price}`}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
function OriginPrice() {
|
|
if (showOriginPrice) {
|
|
const slot = slots['origin-price'];
|
|
return (
|
|
<div class={bem('origin-price')}>
|
|
{slot ? slot() : `${props.currency} ${props.originPrice}`}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
function Num() {
|
|
if (showNum) {
|
|
return <div class={bem('num')}>{slots.num ? slots.num() : `x ${props.num}`}</div>;
|
|
}
|
|
}
|
|
|
|
function Footer() {
|
|
if (slots.footer) {
|
|
return <div class={bem('footer')}>{slots.footer()}</div>;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div class={bem()} {...inherit(ctx, true)}>
|
|
<div class={bem('header')}>
|
|
{Thumb()}
|
|
<div class={bem('content', { centered: props.centered })}>
|
|
{Title()}
|
|
{Desc()}
|
|
{slots.tags && slots.tags()}
|
|
{showBottom && (
|
|
<div class="van-card__bottom">
|
|
{Price()}
|
|
{OriginPrice()}
|
|
{Num()}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
{Footer()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Card.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: '¥'
|
|
}
|
|
};
|
|
|
|
export default sfc<CardProps, CardEvents>(Card);
|