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