|
@@ -3,30 +3,30 @@ import Vuex from 'vuex';
|
|
|
import _ from 'lodash';
|
|
|
Vue.use(Vuex);
|
|
|
const api = {
|
|
|
- columnInfo: `/api/market/user`,
|
|
|
+ userInfo: `/api/market/user`,
|
|
|
};
|
|
|
const state = () => ({});
|
|
|
const mutations = {};
|
|
|
|
|
|
const actions = {
|
|
|
- async query({ commit }, { skip = 0, limit, column_id, ...info } = {}) {
|
|
|
- const res = await this.$axios.$get(`${api.columnInfo}`, { skip, limit, column_id, ...info });
|
|
|
+ async query({ commit }, { skip = 0, limit, ...info } = {}) {
|
|
|
+ const res = await this.$axios.$get(`${api.userInfo}`, { skip, limit, ...info });
|
|
|
return res;
|
|
|
},
|
|
|
async create({ commit }, payload) {
|
|
|
- const res = await this.$axios.$post(`${api.columnInfo}`, payload);
|
|
|
+ const res = await this.$axios.$post(`${api.userInfo}`, payload);
|
|
|
return res;
|
|
|
},
|
|
|
async fetch({ commit }, payload) {
|
|
|
- const res = await this.$axios.$get(`${api.columnInfo}/${payload}`);
|
|
|
+ const res = await this.$axios.$get(`${api.userInfo}/${payload}`);
|
|
|
return res;
|
|
|
},
|
|
|
async update({ commit }, { id, ...data }) {
|
|
|
- const res = await this.$axios.$post(`${api.columnInfo}/update/${id}`, data);
|
|
|
+ const res = await this.$axios.$post(`${api.userInfo}/update/${id}`, data);
|
|
|
return res;
|
|
|
},
|
|
|
async delete({ commit }, payload) {
|
|
|
- const res = await this.$axios.$delete(`${api.columnInfo}/${payload}`);
|
|
|
+ const res = await this.$axios.$delete(`${api.userInfo}/${payload}`);
|
|
|
return res;
|
|
|
},
|
|
|
};
|