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