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.
82 lines
2.7 KiB
82 lines
2.7 KiB
<template>
|
|
<view>
|
|
<swiper class="swiper" :current="currentIndex" :vertical="true" @change="handleSwiperChange">
|
|
<swiper-item v-for="(imageUrl, index) in imageUrls" :key="index">
|
|
<view class="swiper-item" :style="{ backgroundImage: `url(${imageUrl})` }"
|
|
@click="index == 8 ? gotoPath('/bmzm/chapter7/index') : null">
|
|
<image src="https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/btn-img.png" mode="aspectFill"
|
|
:class="['btn-img', {'btn-imgs': index == 6}]" @click="gotoPath('/subPackages/techan/detail?id=37')" v-if="index == 2 || index == 4"></image>
|
|
</view>
|
|
</swiper-item>
|
|
</swiper>
|
|
<MusicControl />
|
|
<NavMenu :nav-index="0" @jump-to-page="handleJumpToPage" />
|
|
<AudioControl audioSrc="https://des.dayunyuanjian.cn/data/2025/09/05/9875a62d-14ef-481e-b88f-19c061478ce6.MP3" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import AudioControl from '@/components/AudioControl.vue';
|
|
import MusicControl from '@/components/MusicControl.vue';
|
|
import NavMenu from '../components/NavMenu.vue';
|
|
export default {
|
|
components: {
|
|
MusicControl,
|
|
NavMenu,
|
|
AudioControl
|
|
},
|
|
data() {
|
|
return {
|
|
currentIndex: 0,
|
|
initialIndex: 1,
|
|
popupIndex: 1,
|
|
// 图片 URL 数组
|
|
imageUrls: [
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img2.png",
|
|
// "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img3.png",
|
|
// "https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img4.png",
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img5.png",
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img6.png",
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img7.png",
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img8.png",
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img9.png",
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img10.png",
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter4/img11.png",
|
|
// 第五章图片
|
|
"https://des.dayunyuanjian.cn/epicSoul/bmzm/chapter5/img1.png"
|
|
]
|
|
};
|
|
},
|
|
methods: {
|
|
handleSwiperChange(e) {
|
|
this.currentIndex = e.detail.current;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.swiper {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
.swiper-item {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-size: 100% 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.btn-img {
|
|
position: absolute;
|
|
width: 217.71rpx;
|
|
height: 36.95rpx;
|
|
left: 61rpx;
|
|
bottom: 86rpx;
|
|
}
|
|
.btn-imgs {
|
|
left: 465rpx;
|
|
bottom: 550rpx;
|
|
}
|
|
</style>
|