s-image-banner.vue
1.07 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
<!-- 装修图文组件:图片轮播 -->
<template>
<su-swiper
:list="imgList"
:dotStyle="data.indicator === 'dot' ? 'long' : 'tag'"
imageMode="scaleToFill"
dotCur="bg-mask-40"
:seizeHeight="300"
:autoplay="data.autoplay"
:interval="data.interval * 1000"
:mode="data.type"
:height="px2rpx(data.height)"
/>
</template>
<script setup>
import { computed } from 'vue';
import sheep from '@/sheep';
// 轮播图
const props = defineProps({
data: {
type: Object,
default: () => ({}),
},
styles: {
type: Object,
default: () => ({}),
},
});
function px2rpx(px) {
//计算比例
let scale = uni.upx2px(100) / 100;
return px / scale;
}
const imgList = computed(() =>
props.data.items.map((item) => {
const src = item.type === 'img' ? item.imgUrl : item.videoUrl;
return {
...item,
type: item.type === 'img' ? 'image' : 'video',
src: sheep.$url.cdn(src),
poster: sheep.$url.cdn(item.imgUrl),
};
}),
);
</script>
<style></style>