mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[new feature] Card: 卡片组件增加图片懒加载属性 (#707)
This commit is contained in:
parent
f713039d58
commit
1d72fd6ad5
@ -56,6 +56,7 @@
|
|||||||
| currency | 货币符号 | `String` | `¥` |
|
| currency | 货币符号 | `String` | `¥` |
|
||||||
| thumb-link | 点击左侧图片后的跳转链接 | `String` | - |
|
| thumb-link | 点击左侧图片后的跳转链接 | `String` | - |
|
||||||
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | `String` | `navigateTo` |
|
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | `String` | `navigateTo` |
|
||||||
|
| lazy-load | 是否开启图片懒加载 | `String` | `false` |
|
||||||
|
|
||||||
### Slot
|
### Slot
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@ VantComponent({
|
|||||||
title: String,
|
title: String,
|
||||||
price: String,
|
price: String,
|
||||||
centered: Boolean,
|
centered: Boolean,
|
||||||
|
lazyLoad: Boolean,
|
||||||
thumbLink: String,
|
thumbLink: String,
|
||||||
linkType: {
|
linkType: {
|
||||||
type: String,
|
type: String,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<view class="custom-class van-card {{ centered ? 'van-card--center' : '' }}">
|
<view class="custom-class van-card {{ centered ? 'van-card--center' : '' }}">
|
||||||
<view class="van-card__thumb" bind:tap="onClickThumb">
|
<view class="van-card__thumb" bind:tap="onClickThumb">
|
||||||
<image wx:if="{{ thumb }}" src="{{ thumb }}" class="van-card__img thumb-class" />
|
<image wx:if="{{ thumb }}" lazy-load="{{ lazyLoad }}" src="{{ thumb }}" class="van-card__img thumb-class" />
|
||||||
<slot wx:else name="thumb" />
|
<slot wx:else name="thumb" />
|
||||||
<van-tag
|
<van-tag
|
||||||
wx:if="{{ tag }}"
|
wx:if="{{ tag }}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user