import Vue from 'vue'; import Vuex from 'vuex'; import _ from 'lodash'; Vue.use(Vuex); const api = { refute: `/api/article/refute`, }; const state = () => ({}); const mutations = {}; const actions = { async query({ commit }, { skip = 0, limit, ...info } = {}) { const res = await this.$axios.$get(api.refute, { skip, limit, ...info }); return res; }, async create({ commit }, payload) { const res = await this.$axios.$post(`${api.refute}`, payload); return res; }, async fetch({ commit, rootState }, payload) { const res = await this.$axios.$get(`${api.refute}/${payload}`, { openid: rootState.user.openid || undefined, }); return res; }, async update({ commit }, { id, ...info } = {}) { const res = await this.$axios.$post(`${api.refute}/update/${id}`, { ...info, }); return res; }, async delete({ commit }, payload) { const res = await this.$axios.$delete(`${api.refute}/${payload}`); return res; }, }; export default { namespaced: true, state, mutations, actions, };