swiper.vue
1.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<template>
<div class="swiper" v-if="list && list.length > 0">
<div class="swiper-item swiper-item-left">
<LayoutLink :href="list[0].url" class="img-link" :report="{PAGE_URL, ...list[0].reportParams}">
<ImageFormat :lazy="false" class="item-imge" :src="list[0].src" :width="310" :height="402"></ImageFormat>
</LayoutLink>
</div>
<div class="swiper-item swiper-item-right">
<LayoutLink :href="list[1].url" class="img-link" :report="{PAGE_URL, ...list[1].reportParams}">
<ImageFormat :lazy="false" class="item-imge" :src="list[1].src" :width="380" :height="196"></ImageFormat>
</LayoutLink>
<LayoutLink :href="list[2].url" class="img-link" :report="{PAGE_URL, ...list[2].reportParams}">
<ImageFormat :lazy="false" class="item-imge" :src="list[2].src" :width="380" :height="196"></ImageFormat>
</LayoutLink>
</div>
</div>
</template>
<script>
export default {
name: 'swiper',
props: {
list: {
type: Array,
},
PAGE_URL: {
type: String,
}
},
data() {
return {
params: {},
}
},
mounted() {
console.log(this.list)
},
methods: {
},
};
</script>
<style lang="scss" scoped>
.swiper {
display: flex;
align-content: stretch;
justify-content: space-between;
height: 402px;
margin-left: 8px;
margin-right: 8px;
.swiper-item {
position: relative;
&:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
z-index: -2;
border-radius: 8px;
box-shadow: 0 0 30px #dcdcdc;
bottom: 0;
}
}
.swiper-item-left {
width: 44%;
}
.swiper-item-right {
width: 54.5%;
display: flex;
flex-direction: column;
justify-content: space-between;
.img-link {
height: 196px;
}
}
.img-link {
max-height: 100%;
display: block;
border-radius: 8px;
overflow: hidden;
img {
width: 100%;
height: 100%;
display: block;
}
}
}
</style>