recommend-product-list.vue
791 Bytes
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
<template>
<div class="product-list">
<RecommendProductItem class="item" v-for="(i, index) in list" v-bind="i" :key="index" @click.native="onClick(i.href)"></RecommendProductItem>
</div>
</template>
<script>
import RecommendProductItem from './recommend-product-item';
export default {
name: 'RecommendProductList',
props: ['list'],
components: {
RecommendProductItem
},
methods: {
onClick(url) {
console.log(url);
this.$yoho.goNewPage({url});
}
}
};
</script>
<style lang="scss" scoped>
.product-list {
width: 100%;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
display: flex;
}
.item + .item {
margin-left: 22px;
}
.item:first-child {
margin-left: 40px;
}
.item:last-child {
margin-right: 40px;
}
</style>