mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Sku): add preview-on-click-image prop (#5684)
This commit is contained in:
parent
02afe720c6
commit
7154afb36f
@ -143,6 +143,7 @@ export default {
|
|||||||
| safe-area-inset-bottom `v2.2.1` | Whether to enable bottom safe area adaptation | *boolean* | `false` |
|
| safe-area-inset-bottom `v2.2.1` | Whether to enable bottom safe area adaptation | *boolean* | `false` |
|
||||||
| start-sale-num `v2.3.0` | Minimum quantity | *number* | `1` |
|
| start-sale-num `v2.3.0` | Minimum quantity | *number* | `1` |
|
||||||
| properties `v2.4.2` | Goods properties | *array* | - |
|
| properties `v2.4.2` | Goods properties | *array* | - |
|
||||||
|
| preview-on-click-image | Whether to preview image when click goods image | *boolean* | `true` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -147,6 +147,7 @@ export default {
|
|||||||
| safe-area-inset-bottom `v2.2.1` | 是否开启[底部安全区适配](#/zh-CN/quickstart#di-bu-an-quan-qu-gua-pei) | *boolean* | `false` |
|
| safe-area-inset-bottom `v2.2.1` | 是否开启[底部安全区适配](#/zh-CN/quickstart#di-bu-an-quan-qu-gua-pei) | *boolean* | `false` |
|
||||||
| start-sale-num `v2.3.0` | 起售数量 | *number* | `1` |
|
| start-sale-num `v2.3.0` | 起售数量 | *number* | `1` |
|
||||||
| properties `v2.4.2` | 商品属性 | *array* | - |
|
| properties `v2.4.2` | 商品属性 | *array* | - |
|
||||||
|
| preview-on-click-image | 是否在点击商品图片时自动预览 | *boolean* | `true` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -91,6 +91,10 @@ export default createComponent({
|
|||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
},
|
},
|
||||||
|
previewOnClickImage: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
@ -484,6 +488,8 @@ export default createComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onPreviewImage(indexImage) {
|
onPreviewImage(indexImage) {
|
||||||
|
const { previewOnClickImage } = this;
|
||||||
|
|
||||||
const index = this.imageList.findIndex(image => image === indexImage);
|
const index = this.imageList.findIndex(image => image === indexImage);
|
||||||
|
|
||||||
const params = {
|
const params = {
|
||||||
@ -494,6 +500,10 @@ export default createComponent({
|
|||||||
|
|
||||||
this.$emit('open-preview', params);
|
this.$emit('open-preview', params);
|
||||||
|
|
||||||
|
if (!previewOnClickImage) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ImagePreview({
|
ImagePreview({
|
||||||
images: this.imageList,
|
images: this.imageList,
|
||||||
startPosition: index,
|
startPosition: index,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user