product-group.vue
1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<template>
<div class="product-group">
<div class="product-group-scroll">
<ProductGroupItem
v-for="(product, inx) in data"
:share="share"
:thumb="thumb"
:single="single"
:product="product"
:article-id="articleId"
:model="model"
:pos-id="posId"
:lazy="lazy"
:index="index"
:key="inx">
</ProductGroupItem>
</div>
</div>
</template>
<script>
import ProductGroupItem from './product-group-item';
export default {
name: 'ProductGroup',
props: {
data: {
type: Array,
default() {
return [];
}
},
lazy: {
type: Boolean,
default: true
},
articleId: {
type: [String, Number],
},
share: Boolean,
thumb: Boolean,
posId: Number,
index: Number,
model: String
},
computed: {
single() {
return this.data.length === 1;
},
},
components: {ProductGroupItem}
};
</script>
<style lang="scss" scoped>
.product-group {
margin: 40px 0;
overflow-y: hidden;
&:after {
content: "";
display: block;
margin-top: -79px;
}
}
.product-group-scroll {
width: 100%;
padding-bottom: 80px;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}
</style>