12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import Vue from 'vue';
- import Vuex from 'vuex';
- import _ from 'lodash';
- Vue.use(Vuex);
- const api = {
- userInfo: `/api/auth/user/uppasswd`,
- };
- const state = () => ({});
- const mutations = {};
- const actions = {
- 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.userInfo}`, payload);
- return res;
- },
- async fetch({ commit }, payload) {
- const res = await this.$axios.$get(`${api.userInfo}/${payload}`);
- return res;
- },
- async update({ commit }, payload) {
- const res = await this.$axios.$post(`${api.userInfo}`, payload);
- return res;
- },
- async delete({ commit }, payload) {
- const res = await this.$axios.$delete(`${api.userInfo}/${payload}`);
- return res;
- },
- };
- export default {
- namespaced: true,
- state,
- mutations,
- actions,
- };
|