|
@@ -41,7 +41,7 @@
|
|
|
>
|
|
|
<video
|
|
|
ref="video"
|
|
|
- :src="`https://4dkk.4dage.com/scene_edit_data/KJ-aigSkgvRWR/user/${item.url}`"
|
|
|
+ :src="`https://4dkk.4dage.com/scene_edit_data/${sceneCode}/user/${item.url}`"
|
|
|
controls
|
|
|
controlslist="nodownload"
|
|
|
disablePictureInPicture
|
|
@@ -97,7 +97,7 @@
|
|
|
ref="audio-comp"
|
|
|
:key="index"
|
|
|
class="audio-custom swiper-slide"
|
|
|
- :audio-src="`https://4dkk.4dage.com/scene_edit_data/KJ-aigSkgvRWR/user/${item.url}`"
|
|
|
+ :audio-src="`https://4dkk.4dage.com/scene_edit_data/${sceneCode}/user/${item.url}`"
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="swiper-pagination">
|
|
@@ -136,7 +136,7 @@
|
|
|
<img
|
|
|
v-for="(item, index) in typesForShow[currentTabIdx].list"
|
|
|
:key="index"
|
|
|
- v-lazy="`https://4dkk.4dage.com/scene_edit_data/KJ-aigSkgvRWR/user/${item.url}`"
|
|
|
+ v-lazy="`https://4dkk.4dage.com/scene_edit_data/${sceneCode}/user/${item.url}`"
|
|
|
class="swiper-slide"
|
|
|
alt=""
|
|
|
draggable="false"
|
|
@@ -184,6 +184,10 @@ export default {
|
|
|
hotspotList: {
|
|
|
type: Array,
|
|
|
required: true,
|
|
|
+ },
|
|
|
+ sceneCode: {
|
|
|
+ type: String,
|
|
|
+ required: true,
|
|
|
}
|
|
|
},
|
|
|
data() {
|
|
@@ -265,7 +269,7 @@ export default {
|
|
|
})
|
|
|
for (const mediaItem of hotspot.media[hotspot.type]) {
|
|
|
targetTypeItem.list.push({
|
|
|
- title: hotspot.content || hotspot.title.split('&')[0],
|
|
|
+ title: /* hotspot.content || */hotspot.title.split('&')[0],
|
|
|
url: mediaItem.src,
|
|
|
})
|
|
|
}
|