云计算期末作业
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.
 
 
 
 

54 lines
1.2 KiB

<template>
<div class="home">
<swiper />
<div class="section" v-for="(item,index) in songsList" :key="index">
<div class="section-title">{{item.name}}</div>
<content-list :contentList="item.list"></content-list>
</div>
</div>
</template>
<script>
import Swiper from "../components/Swiper";
import contentList from '../components/ContentList';
import {getAllSinger,getAllSongList} from '../api/index';
export default {
name: 'home',
components: {
Swiper,
contentList
},
data () {
return {
songsList: [
{name:"歌单",list: []},
{name:"歌手",list: []}
]
}
},
created () {
this.getSongList();
this.getSinger();
},
methods: {
getSongList(){ //获取前十条歌单
getAllSongList().then((res) => {
this.songsList[0].list = res.slice(0,10);
}).catch((err) => {
console.log(err);
})
},
getSinger(){ //获取前十名歌手
getAllSinger().then((res) => {
this.songsList[1].list = res.slice(0,10);
}).catch((err) => {
console.log(err);
})
}
}
}
</script>
<style lang="scss" scoped>
@import '../assets/css/home.scss';
</style>