feat(Sku): add preview-on-click-image prop (#5684)

This commit is contained in:
landluck 2020-02-19 15:48:40 +08:00 committed by GitHub
parent 02afe720c6
commit 7154afb36f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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,