[improvement] Card: add thumb-mode prop (#733)

This commit is contained in:
Fyerl 2018-10-12 14:52:09 +08:00 committed by neverland
parent a93c4f7d4f
commit 4cbefd361a
3 changed files with 6 additions and 0 deletions

View File

@ -47,6 +47,7 @@
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|
| thumb | 左侧图片 | `String` | - |
| thumb-mode | 左侧图片裁剪、缩放的模式,可选值参考小程序 image 组件 mode 属性值 | `String` | `scaleToFill` |
| title | 标题 | `String` | - |
| desc | 描述 | `String` | - |
| tag | 标签 | `String` | - |

View File

@ -15,6 +15,10 @@ VantComponent({
num: String,
desc: String,
thumb: String,
thumbMode: {
type: String,
value: 'scaleToFill'
},
title: String,
price: String,
originPrice: String,

View File

@ -3,6 +3,7 @@
<image
wx:if="{{ thumb }}"
src="{{ thumb }}"
mode="{{ thumbMode }}"
lazy-load="{{ lazyLoad }}"
class="van-card__img thumb-class"
/>