mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Card: add tag prop (#705)
This commit is contained in:
parent
126ce60e3e
commit
afeed567d2
@ -1,20 +1,21 @@
|
|||||||
<view class="container">
|
<view class="container">
|
||||||
<demo-block title="基础用法">
|
<demo-block title="基础用法">
|
||||||
<van-card
|
<van-card
|
||||||
title="标题"
|
|
||||||
desc="描述信息"
|
|
||||||
num="2"
|
num="2"
|
||||||
price="2.00"
|
price="2.00"
|
||||||
|
desc="描述信息"
|
||||||
|
title="商品标题"
|
||||||
thumb="{{ imageURL }}"
|
thumb="{{ imageURL }}"
|
||||||
/>
|
/>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block title="高级用法">
|
<demo-block title="高级用法">
|
||||||
<van-card
|
<van-card
|
||||||
title="标题"
|
|
||||||
desc="描述信息"
|
|
||||||
num="2"
|
num="2"
|
||||||
|
tag="标签"
|
||||||
price="2.00"
|
price="2.00"
|
||||||
|
desc="描述信息"
|
||||||
|
title="商品标题"
|
||||||
thumb="{{ imageURL }}"
|
thumb="{{ imageURL }}"
|
||||||
>
|
>
|
||||||
<div slot="footer">
|
<div slot="footer">
|
||||||
|
@ -15,10 +15,10 @@
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<van-card
|
<van-card
|
||||||
title="标题"
|
|
||||||
desc="描述"
|
|
||||||
num="2"
|
num="2"
|
||||||
price="2.00"
|
price="2.00"
|
||||||
|
desc="描述信息"
|
||||||
|
title="商品标题"
|
||||||
thumb="{{ imageURL }}"
|
thumb="{{ imageURL }}"
|
||||||
/>
|
/>
|
||||||
```
|
```
|
||||||
@ -28,10 +28,11 @@
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<van-card
|
<van-card
|
||||||
title="标题"
|
|
||||||
desc="描述"
|
|
||||||
num="2"
|
num="2"
|
||||||
|
tag="标签"
|
||||||
price="2.00"
|
price="2.00"
|
||||||
|
desc="描述信息"
|
||||||
|
title="商品标题"
|
||||||
thumb="{{ imageURL }}"
|
thumb="{{ imageURL }}"
|
||||||
>
|
>
|
||||||
<view slot="footer">
|
<view slot="footer">
|
||||||
@ -48,6 +49,7 @@
|
|||||||
| thumb | 左侧图片 | `String` | - |
|
| thumb | 左侧图片 | `String` | - |
|
||||||
| title | 标题 | `String` | - |
|
| title | 标题 | `String` | - |
|
||||||
| desc | 描述 | `String` | - |
|
| desc | 描述 | `String` | - |
|
||||||
|
| tag | 标签 | `String` | - |
|
||||||
| num | 商品数量 | `String | Number` | - |
|
| num | 商品数量 | `String | Number` | - |
|
||||||
| price | 商品价格 | `String | Number` | - |
|
| price | 商品价格 | `String | Number` | - |
|
||||||
| centered | 内容是否垂直居中 | `String` | `false` |
|
| centered | 内容是否垂直居中 | `String` | `false` |
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
{
|
{
|
||||||
"component": true
|
"component": true,
|
||||||
|
"usingComponents": {
|
||||||
|
"van-tag": "../tag/index"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,6 +77,12 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__tag {
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&__footer {
|
&__footer {
|
||||||
right: 15px;
|
right: 15px;
|
||||||
bottom: 5px;
|
bottom: 5px;
|
||||||
|
@ -10,6 +10,7 @@ VantComponent({
|
|||||||
],
|
],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
|
tag: String,
|
||||||
num: String,
|
num: String,
|
||||||
desc: String,
|
desc: String,
|
||||||
thumb: String,
|
thumb: String,
|
||||||
|
@ -2,6 +2,14 @@
|
|||||||
<view class="van-card__thumb">
|
<view class="van-card__thumb">
|
||||||
<image wx:if="{{ thumb }}" src="{{ thumb }}" class="van-card__img thumb-class" />
|
<image wx:if="{{ thumb }}" src="{{ thumb }}" class="van-card__img thumb-class" />
|
||||||
<slot wx:else name="thumb" />
|
<slot wx:else name="thumb" />
|
||||||
|
<van-tag
|
||||||
|
wx:if="{{ tag }}"
|
||||||
|
mark
|
||||||
|
type="danger"
|
||||||
|
custom-class="van-card__tag"
|
||||||
|
>
|
||||||
|
{{ tag }}
|
||||||
|
</van-tag>
|
||||||
</view>
|
</view>
|
||||||
<view class="van-card__content">
|
<view class="van-card__content">
|
||||||
<view wx:if="{{ title || price || price === 0 }}" class="van-card__row">
|
<view wx:if="{{ title || price || price === 0 }}" class="van-card__row">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user