123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <template>
- <view>
- <view class="swiper-banner-box" >
- <swiper class="tui-banner-swiper tui-banner tui-skeleton-fillet" :autoplay="true" :interval="5000" :duration="500" @change="swiperChange" :circular="true">
- <swiper-item v-for="(item,index) in list" :key="index" @click.stop="NavToDetailPage(item)">
- <image :src="item.image" class="tui-slide-image" mode="scaleToFill"/>
- </swiper-item>
- </swiper>
- <view class="swiper__dots-box" v-if="list.length > 1">
- <view v-for="(item,idx) in list"
- :key="idx"
- :class="[idx===current?'swiper__dots-long':'none']"
- :data-index="current" class="swiper__dots-item">
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- name:"address",
- props:{
- list:{
- type:Array
- }
- },
- data() {
- return{
- current:0
- }
- },
- created(){
-
- },
- computed: {
-
- },
- methods:{
- swiperChange(e) {//轮播图切换
- const index = e.detail.current;
- this.current = index;
- },
- NavToDetailPage(floor) {//跳转
- this.$api.FlooryNavigateTo(floor)
- }
- }
- }
- </script>
- <style lang="scss">
- .swiper-banner-box{
- width: 100%;
- height: 360rpx;
- padding-top:100rpx;
- position: relative;
- background-size: cover;
- }
- .tui-banner-swiper {
- width: 700rpx;
- margin: 0 auto;
- height: 340rpx;
- border-radius: 16rpx;
- overflow: hidden;
- transform: translateY(0);
- margin-top: 16rpx;
- .banner-item{
- border-radius: 16rpx;
- }
- .tui-slide-image {
- width: 100%;
- height: 340rpx;
- display: block;
- }
- }
- .swiper__dots-box{
- position: absolute;
- bottom: 30rpx;
- left: 0;
- right: 0;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex: 1;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- .swiper__dots-item{
- width: 10rpx;
- height: 10rpx;
- border-radius: 100%;
- margin-left: 6px;
- background-color:rgba(255,255,255,.7);
- }
- .swiper__dots-long{
- width: 10rpx;
- height: 10rpx;
- border-radius: 4rpx;
- background-color: #fa55bf;
- transition: all 0.4s;
- }
- }
- </style>
|