代码拉取完成,页面将自动刷新
/**
* @file Music 数据状态 / ES module
* @module store/music
* @author Surmon <https://github.com/surmon-china>
*/
import appConfig from '~/config/app.config'
export const state = () => {
return {
list: {
fetching: false,
data: null
},
lrc: {
fetching: false,
data: null
}
}
}
export const mutations = {
updateListFetching(state, action) {
state.list.fetching = action
},
updateListData(state, action) {
state.list.data = action
},
updateLrcFetching(state, action) {
state.lrc.fetching = action
},
updateLrcData(state, action) {
state.lrc.data = action
}
}
export const actions = {
fetchSongList({ commit }) {
commit('updateListFetching', true)
return this.$axios
.$get(`/music/list/${appConfig.music.id}`)
.then(response => {
commit('updateListData', response.result)
commit('updateListFetching', false)
return response
})
.catch(error => {
commit('updateListData', null)
commit('updateListFetching', false)
return Promise.reject(error)
})
},
fetchSongLrc({ commit }, songID) {
commit('updateLrcFetching', true)
return this.$axios
.$get(`/music/lrc/${songID}`)
.then(response => {
commit('updateLrcData', response.result)
commit('updateLrcFetching', false)
return response
})
.catch(error => {
commit('updateLrcData', null)
commit('updateLrcFetching', false)
return Promise.reject(error)
})
},
fetchSongUrl(_, songID) {
return this.$axios.$get(`/music/url/${songID}`)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。