代码拉取完成,页面将自动刷新
/**
* @file Vlog 项目数据状态 / ES module
* @module store/vlog
* @author Surmon <https://github.com/surmon-china>
*/
export const VLOG_API_PATH = '/bilibili/list'
export const state = () => {
return {
video: {
fetching: false,
data: {
vlist: []
}
}
}
}
export const mutations = {
updateVideoFetching(state, action) {
state.video.fetching = action
},
updateVideoData(state, action) {
state.video.data = action.result
}
}
export const actions = {
// 获取视频列表
fetchVideos({ commit, state }, params = {}) {
params.per_page = params.per_page || 66
// return data when exists
if (state.video.data.vlist.length) {
return Promise.resolve(state.video.data)
}
// 不存在则请求新数据
commit('updateVideoFetching', true)
return this.$axios
.$get(VLOG_API_PATH, { params })
.then(response => {
commit('updateVideoData', response)
commit('updateVideoFetching', false)
})
.catch(() => commit('updateVideoFetching', false))
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。