guhongwei 4 år sedan
förälder
incheckning
120956a9b4
2 ändrade filer med 48 tillägg och 0 borttagningar
  1. 2 0
      src/store/index.js
  2. 46 0
      src/store/onlive/room.js

+ 2 - 0
src/store/index.js

@@ -16,6 +16,7 @@ import exportuser from '@common/store/market/exportuser';
 import user from './user';
 import place from './place';
 import onliveUser from './onlive/user';
+import room from './onlive/room';
 import * as ustate from '@/store/common/state';
 import * as umutations from '@/store/common/mutations';
 
@@ -43,5 +44,6 @@ export default new Vuex.Store({
     dock,
     place,
     onliveUser,
+    room,
   },
 });

+ 46 - 0
src/store/onlive/room.js

@@ -0,0 +1,46 @@
+// 房间
+import Vue from 'vue';
+import Vuex from 'vuex';
+import _ from 'lodash';
+Vue.use(Vuex);
+const api = {
+  roomInfo: `/api/onlive/room`,
+};
+const state = () => ({});
+const mutations = {};
+
+const actions = {
+  async query({ commit }, { skip = 0, limit = 10, ...info } = {}) {
+    const res = await this.$axios.$get(api.roomInfo, {
+      skip,
+      limit,
+      ...info,
+    });
+    return res;
+  },
+  async create({ commit }, payload) {
+    const res = await this.$axios.$post(`${api.roomInfo}`, payload);
+    return res;
+  },
+  async fetch({ commit }, payload) {
+    const res = await this.$axios.$get(`${api.roomInfo}/${payload}`);
+    return res;
+  },
+  async update({ commit }, { id, ...info } = {}) {
+    const res = await this.$axios.$post(`${api.roomInfo}/update/${id}`, {
+      ...info,
+    });
+    return res;
+  },
+  async delete({ commit }, payload) {
+    const res = await this.$axios.$delete(`${api.roomInfo}/${payload}`);
+    return res;
+  },
+};
+
+export default {
+  namespaced: true,
+  state,
+  mutations,
+  actions,
+};