import Vue from 'vue'; import Vuex from 'vuex'; import _ from 'lodash'; Vue.use(Vuex); const api = { interface: `/api/live/personroom`, roomCountDelete: id => `/api/live/personroomtalk/${id}`, roomCount: `/api/live/personroomtalk/countroom`, }; const state = () => ({}); const mutations = {}; const actions = { async query({ commit }, { skip = 0, limit = undefined, ...info } = {}) { const res = await this.$axios.$get(api.interface, { skip, limit, ...info }); return res; }, async create({ commit }, payload) { const res = await this.$axios.$post(`${api.interface}`, payload); return res; }, async fetch({ commit }, payload) { const res = await this.$axios.$get(`${api.interface}/${payload}`); return res; }, async update({ commit }, { id, ...info } = {}) { const res = await this.$axios.$post(`${api.interface}/${id}`, { ...info }); return res; }, async delete({ commit }, payload) { const res = await this.$axios.$delete(`${api.interface}/${payload}`); return res; }, async countRoom({ commit }, payload) { const res = await this.$axios.$get(api.roomCount); return res; }, async countDelete({ commit }, payload) { const res = await this.$axios.$delete(api.roomCountDelete(payload)); return res; }, }; export default { namespaced: true, state, mutations, actions, };