123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <view class="swiper-content">
- <swiper class="swiper-box" autoplay :interval="3000" circular @change="change">
- <swiper-item v-for="(item ,index) in BannerList" :key="`swiper_${index}`">
- <view class="swiper-item" @click.stop="lookDetails(item)">
- <image :src="item.thumbnail" ></image>
- </view>
- </swiper-item>
- </swiper>
- <div class="custom-indicator">
- <span :class="['indicator' , current === index ? 'active-indicator' : '']"
- v-for="(item , index) in BannerList">
- </span>
- </div>
- </view>
- </template>
- <script>
-
- export default {
- name: "carousels",
- props: {
- BannerList: {
- type: Array,
- default: () => []
- }
- },
- data() {
- return {
- info: [{
- content: '内容 A'
- }, {
- content: '内容 B'
- }, {
- content: '内容 C'
- }],
- current: 0,
- mode: 'round',
- }
- },
- methods: {
- change(e) {
- this.current = e.detail.current;
- },
- lookDetails(item){
- uni.navigateTo({
- url: this.$path.articleDetails + `${item.id}`
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .swiper-box{
- height: 280rpx;
- }
- .swiper-content {
- padding: 0 $pages-padding;
- }
- .swiper-box {
- .swiper-item {
- width: 100%;
- height: 280rpx;
- image {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- }
- }
- .custom-indicator {
- width: 100%;
- padding-top: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- // gap: 20rpx 20rpx;
- .indicator {
- width: 8rpx;
- height: 8rpx;
- background-color: #d9d9d9;
- transform: rotate(45deg);
- }
- .indicator+.indicator {
- margin-left: 16rpx;
- }
- .active-indicator {
- background-color: #27B082;
- }
- }
- // .my-swipe {
- // overflow: hidden;
- // ::v-deep .van-swipe__track {
- // height: 280rpx;
- // }
- // .van-swipe-item {
- // display: inline-block;
- // height: 100%;
- // .swipe-img {
- // width: 100%;
- // height: 100%;
- // ::v-deep .van-image__img {
- // width: 100%;
- // height: 100%;
- // }
- // }
- // ;
- // }
- // }
- // .custom-indicator {
- // width: 100%;
- // padding-top: 15rpx;
- // display: flex;
- // justify-content: center;
- // align-items: center;
- // flex-wrap: wrap;
- // gap: 20rpx 20rpx;
- // .indicator {
- // width: 10rpx;
- // height: 10rpx;
- // background-color: #d9d9d9;
- // transform: rotate(45deg);
- // }
- // .active-indicator {
- // background-color: #27B082;
- // }
- // }
- </style>
|