You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<!-- 轮播 -->
<view class="banner-swiper-wrap u-m-b-10" :style="{ padding: `${Py}rpx ${Px}rpx` }">
<swiper
:style="{ minHeight: height + 'rpx', height: height + 'rpx' }"
class="screen-swiper square-dot"
:indicator-dots="true"
:circular="true"
:autoplay="true"
interval="5000"
duration="500"
>
<swiper-item :style="{ borderRadius: borderRadius + 'rpx' }" v-for="(item, index) in list" :key="index" @tap="onSwiper(index)">
<image :src="item.image" mode="aspectFill"></image>
</swiper-item>
</swiper>
</view>
</template>
<script>
/**
* shBanner-轮播卡片
* @property {Array} list 轮播图数据,
* @property {String Number} height 轮播图组件高度单位rpx默认250
* @property {String} borderRadius 圆角值
* @event {Function} click 点击轮播图时触发
*/
export default {
components: {},
data() {
return {};
},
props: {
Px: {
type: [Number, String],
default: 0
},
Py: {
type: [Number, String],
default: 0
},
// 轮播图的数据,格式如:[{image: 'xxxx', title: 'xxxx'}{image: 'yyyy', title: 'yyyy'}]其中title字段可选
list: {
type: Array,
default() {
return [];
}
},
// 圆角值
borderRadius: {
type: [Number, String],
default: 0
},
// list的高度单位rpx
height: {
type: [Number, String],
default: 250
}
},
computed: {},
methods: {
onSwiper(e) {
this.$tools.routerTo(this.list[e].path);
}
}
};
</script>
<style lang="scss" scoped></style>