代码提交

This commit is contained in:
黄少君
2023-11-14 17:21:03 +08:00
parent d0b337c596
commit dcab74274f
567 changed files with 22414 additions and 7375 deletions

View File

@ -0,0 +1,54 @@
<!--
@name: index
@author: kahu4
@date: 2023-11-02 16:10
@descriptionindex
@update: 2023-11-02 16:10
-->
<script setup>
</script>
<template>
<view class="banner-container">
<swiper
class="swiper"
circular
indicator-dots
autoplay
>
<swiper-item v-for="item in 10">
<view class="swiper-item">
<image
src="@/static/images/banner.png"
mode="aspectFit"
/>
</view>
</swiper-item>
</swiper>
</view>
</template>
<style
scoped
lang="scss"
>
.banner-container {
padding: 0 35rpx;
box-sizing: border-box;
border-radius: 15rpx;
.swiper {
height: 340rpx;
.swiper-item {
height: 340rpx;
image {
width: 100%;
height: 100%;
}
}
}
}
</style>