image-carousel.vue
1.72 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
<template>
<div class="image-carousel">
<swipe :continuous="false" :auto="0" :show-indicators="goods && goods.length > 1" v-ref:swipe>
<swipe-item v-for="item in goods">
<img title="{{item.title}}"
:src="item.colorImage | resize 750 1000"
width="100%" alt=""
@click.prevent="showcase()">
</swipe-item>
</swipe>
</div>
</template>
<style l>
.image-carousel {
width: 100%;
height: 1000px;
.swipe {
height: 100%;
}
.swipe-indicators {
left: auto;
right: 32px;
}
.swipe-indicator {
width: 8px;
height: 8px;
line-height: 12px;
display: inline-block;
&.active {
width: 12px;
height: 12px;
background: #000;
opacity: 0.6;
margin: -2px 5px;
}
}
}
</style>
<script>
const swipe = require('vue-swipe');
const yoho = require('yoho');
module.exports = {
props: {
goods: [Object]
},
data() {
return {
};
},
components: {
swipe: swipe.Swipe,
swipeItem: swipe.SwipeItem,
},
methods: {
showcase: function() {
const opts = {
images: this.goods.map((item) => {
return item.colorImage;
}).filter(image => image),
index: this.$refs.swipe.index
};
yoho.goImageBrowser(opts);
}
}
};
</script>