2020-08-02 19:21:51 +08:00
|
|
|
export const NOTIFICATION_API_PATH = '/api/notification'
|
|
|
|
|
|
|
|
const getDefaultListData = () => {
|
|
|
|
return {
|
|
|
|
notifications: [],
|
|
|
|
pagination: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const state = () => {
|
|
|
|
return {
|
|
|
|
list: {
|
|
|
|
fetching: false,
|
|
|
|
data: getDefaultListData()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const mutations = {
|
|
|
|
// 消息列表
|
|
|
|
updateListFetching(state, action) {
|
|
|
|
state.list.fetching = action
|
|
|
|
},
|
|
|
|
updateListData(state, action) {
|
|
|
|
state.list.data = action
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const actions = {
|
|
|
|
// 获取消息列表
|
2021-03-06 09:59:38 +08:00
|
|
|
fetchList({commit, state}, params = {}) {
|
2020-08-02 19:21:51 +08:00
|
|
|
// 清空已有数据
|
|
|
|
commit('updateListFetching', true)
|
2021-03-06 09:59:38 +08:00
|
|
|
// 当前页判断
|
|
|
|
let currentData = JSON.parse(JSON.stringify(state)).list.data
|
|
|
|
if (Number(params.page) === currentData.pagination.currentPage) {
|
|
|
|
commit('updateListFetching', false)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
commit('updateListData', getDefaultListData())
|
2020-08-02 19:21:51 +08:00
|
|
|
let data = {
|
|
|
|
page: params.page || 1
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.$axios
|
|
|
|
.$get(`${NOTIFICATION_API_PATH}/all`, {
|
|
|
|
params: data
|
|
|
|
})
|
|
|
|
.then(response => {
|
|
|
|
commit('updateListFetching', false);
|
|
|
|
commit('updateListData', response);
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.log(error);
|
|
|
|
commit('updateListFetching', false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|