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