123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <template>
- <view
- class="swiper-box "
- :class="{
- loading:loading,
- 'main-center':loading,
- 'cross-center': loading
- }"
- :style="{height: height}"
- >
- <u-loading-icon :show="loading" vertical />
- <u-swiper
- v-if="list.length"
- :list="list"
- :height="height"
- :radius="radius"
- style="width: 100%;"
- :bg-color="$colors.bgColor"
- :indicator="true"
- :show-title="true"
- indicator-mode="dot"
- :indicator-style="{bottom: '24rpx'}"
- img-mode=""
- @click="handleClick"
- @change="handleChange"
- >
- <view
- slot="indicator"
- class="indicator"
- >
- <view
- v-for="(item, index) in list"
- :key="index"
- class="indicator__dot"
- :class="[index === currentNum && 'indicator__dot--active']"
- />
- </view>
- </u-swiper>
- </view>
- </template>
- <script>
- export default {
- name: 'SwiperBox',
- props: {
- height: {
- type: [Number, String],
- default: '330rpx'
- },
- radius: {
- type: [Number, String],
- default: '10rpx'
- }
- },
- data() {
- return {
- loading: true,
- list: [],
- currentNum: 0,
- data: []
- }
- },
- computed: {
- },
- async created() {
- await this.getSwiper()
- },
- methods: {
- handleClick(index) {
- const item = this.data[index]
- console.log('-->data', item)
- if (item.episode_id) {
- this.$u.route({
- url: 'pages/episode/play',
- params: {
- id: item.episode_id
- }
- })
- }
- },
- handleChange(e) {
- this.currentNum = e.current
- },
- async getSwiper() {
- await this.$api.setting.banner().then(res => {
- this.loading = false
- this.data = res.data
- res.data.forEach(obj => {
- this.list.push(obj.image)
- })
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .swiper-box{
- margin: 20rpx 0;
- border-radius: 8rpx;
- &.loading{
- background-color: $bg-color;
- }
- .indicator {
- display: flex;
- flex-direction: row;
- justify-content: center;
- &__dot {
- height: 20rpx;
- width: 20rpx;
- border-radius: 50%;
- background-color: rgba(255, 255, 255, 0.35);
- margin: 0 10px;
- transition: background-color 0.3s;
- &--active {
- background-color: #6EEBE8;
- }
- }
- }
- }
- </style>
|