mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[new feature] Card: add bottom slot
This commit is contained in:
parent
85b2515f60
commit
774438b308
@ -73,6 +73,7 @@ Use slot to custom content.
|
|||||||
| num | Custom num |
|
| num | Custom num |
|
||||||
| price | Custom price |
|
| price | Custom price |
|
||||||
| origin-price | Custom origin price |
|
| origin-price | Custom origin price |
|
||||||
|
| bottom | Custom price bottom |
|
||||||
| thumb | Custom thumb |
|
| thumb | Custom thumb |
|
||||||
| tag | Custom thumb tag |
|
| tag | Custom thumb tag |
|
||||||
| tags | Custom tags |
|
| tags | Custom tags |
|
||||||
|
@ -38,9 +38,9 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: @card-thumb-size;
|
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-width: 0; /* hack for flex box ellipsis */
|
min-width: 0; /* hack for flex box ellipsis */
|
||||||
|
min-height: @card-thumb-size;
|
||||||
|
|
||||||
&--centered {
|
&--centered {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -28,6 +28,7 @@ export type CardSlots = DefaultSlots & {
|
|||||||
title?: ScopedSlot;
|
title?: ScopedSlot;
|
||||||
thumb?: ScopedSlot;
|
thumb?: ScopedSlot;
|
||||||
price?: ScopedSlot;
|
price?: ScopedSlot;
|
||||||
|
bottom?: ScopedSlot;
|
||||||
footer?: ScopedSlot;
|
footer?: ScopedSlot;
|
||||||
'origin-price'?: ScopedSlot;
|
'origin-price'?: ScopedSlot;
|
||||||
};
|
};
|
||||||
@ -117,6 +118,7 @@ function Card(
|
|||||||
{Price}
|
{Price}
|
||||||
{OriginPrice}
|
{OriginPrice}
|
||||||
{Num}
|
{Num}
|
||||||
|
{slots.bottom && slots.bottom()}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`render bottom slot 1`] = `
|
||||||
|
<div class="van-card">
|
||||||
|
<div class="van-card__header">
|
||||||
|
<div class="van-card__content">
|
||||||
|
<div class="van-card__bottom">
|
||||||
|
<div class="van-card__price">¥ 100</div>Custom Bottom
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`render origin-price slot 1`] = `
|
exports[`render origin-price slot 1`] = `
|
||||||
<div class="van-card">
|
<div class="van-card">
|
||||||
<div class="van-card__header">
|
<div class="van-card__header">
|
||||||
|
@ -15,3 +15,18 @@ test('render origin-price slot', () => {
|
|||||||
|
|
||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('render bottom slot', () => {
|
||||||
|
const wrapper = mount({
|
||||||
|
template: `
|
||||||
|
<card :price="100">
|
||||||
|
<template v-slot:bottom>Custom Bottom</template>
|
||||||
|
</card>
|
||||||
|
`,
|
||||||
|
components: {
|
||||||
|
Card
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(wrapper).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
@ -73,6 +73,7 @@ Vue.use(Card);
|
|||||||
| num | 自定义数量 |
|
| num | 自定义数量 |
|
||||||
| price | 自定义价格 |
|
| price | 自定义价格 |
|
||||||
| origin-price | 自定义商品原价 |
|
| origin-price | 自定义商品原价 |
|
||||||
|
| bottom | 自定义价格下方区域 |
|
||||||
| thumb | 自定义图片 |
|
| thumb | 自定义图片 |
|
||||||
| tag | 自定义图片角标 |
|
| tag | 自定义图片角标 |
|
||||||
| tags | 自定义描述下方标签区域 |
|
| tags | 自定义描述下方标签区域 |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user