1 Star 0 Fork 0

MTM/surmon.me

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vlog.js 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
Surmon 提交于 2020-02-13 10:29 . Upgrade
/**
* @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))
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/munu/surmon.me.git
[email protected]:munu/surmon.me.git
munu
surmon.me
surmon.me
master

搜索帮助