|
|
@ -57,7 +57,36 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div></div>
|
|
|
|
<div class="container latest-mv">
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
|
|
|
class="cover"
|
|
|
|
|
|
|
|
@mouseover="mvHover = true"
|
|
|
|
|
|
|
|
@mouseleave="mvHover = false"
|
|
|
|
|
|
|
|
@click="goToMv(latestMV.id)"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<img :src="latestMV.coverUrl" />
|
|
|
|
|
|
|
|
<transition name="fade">
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
|
|
|
v-show="mvHover"
|
|
|
|
|
|
|
|
class="shadow"
|
|
|
|
|
|
|
|
:style="{
|
|
|
|
|
|
|
|
background: 'url(' + latestMV.coverUrl + ')',
|
|
|
|
|
|
|
|
}"
|
|
|
|
|
|
|
|
></div>
|
|
|
|
|
|
|
|
</transition>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="info">
|
|
|
|
|
|
|
|
<div class="name">
|
|
|
|
|
|
|
|
<router-link :to="'/mv/' + latestMV.id">{{
|
|
|
|
|
|
|
|
latestMV.name
|
|
|
|
|
|
|
|
}}</router-link>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="date">
|
|
|
|
|
|
|
|
{{ latestMV.publishTime | formatDate }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="type"> 最新MV </div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="popularTracks" class="popular-tracks">
|
|
|
|
<div id="popularTracks" class="popular-tracks">
|
|
|
@ -162,6 +191,7 @@ export default {
|
|
|
|
mvs: [],
|
|
|
|
mvs: [],
|
|
|
|
hasMoreMV: false,
|
|
|
|
hasMoreMV: false,
|
|
|
|
similarArtists: [],
|
|
|
|
similarArtists: [],
|
|
|
|
|
|
|
|
mvHover: false,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
computed: {
|
|
|
@ -174,6 +204,15 @@ export default {
|
|
|
|
['EP/Single', 'EP', 'Single'].includes(a.type)
|
|
|
|
['EP/Single', 'EP', 'Single'].includes(a.type)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
latestMV() {
|
|
|
|
|
|
|
|
const mv = this.mvs[0];
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
id: mv.id || mv.vid,
|
|
|
|
|
|
|
|
name: mv.name || mv.title,
|
|
|
|
|
|
|
|
coverUrl: `${mv.imgurl16v9 || mv.cover || mv.coverUrl}?param=464y260`,
|
|
|
|
|
|
|
|
publishTime: mv.publishTime,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.loadData(this.$route.params.id);
|
|
|
|
this.loadData(this.$route.params.id);
|
|
|
@ -216,6 +255,9 @@ export default {
|
|
|
|
params: { id },
|
|
|
|
params: { id },
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
goToMv(id) {
|
|
|
|
|
|
|
|
this.$router.push({ path: '/mv/' + id });
|
|
|
|
|
|
|
|
},
|
|
|
|
playPopularSongs(trackID = 'first') {
|
|
|
|
playPopularSongs(trackID = 'first') {
|
|
|
|
let trackIDs = this.popularTracks.map(t => t.id);
|
|
|
|
let trackIDs = this.popularTracks.map(t => t.id);
|
|
|
|
this.$store.state.player.replacePlaylist(
|
|
|
|
this.$store.state.player.replacePlaylist(
|
|
|
@ -314,6 +356,7 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.container {
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex: 1;
|
|
|
|
align-items: center;
|
|
|
|
align-items: center;
|
|
|
|
border-radius: 12px;
|
|
|
|
border-radius: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -364,4 +407,40 @@ export default {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.latest-mv {
|
|
|
|
|
|
|
|
.cover {
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
transition: transform 0.3s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
|
|
|
border-radius: 0.75em;
|
|
|
|
|
|
|
|
height: 128px;
|
|
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.shadow {
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
top: 6px;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
filter: blur(16px) opacity(0.4);
|
|
|
|
|
|
|
|
transform: scale(0.9, 0.9);
|
|
|
|
|
|
|
|
z-index: -1;
|
|
|
|
|
|
|
|
background-size: cover;
|
|
|
|
|
|
|
|
border-radius: 0.75em;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.fade-enter-active,
|
|
|
|
|
|
|
|
.fade-leave-active {
|
|
|
|
|
|
|
|
transition: opacity 0.3s;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|