Parcourir la source

Merge branch 'master' of http://git.cc-lotus.info/service-platform/common

wuhongyu il y a 5 ans
Parent
commit
89adb0e9ee
2 fichiers modifiés avec 10 ajouts et 1 suppressions
  1. 0 1
      service-market
  2. 10 0
      store/live/personalroom.js

+ 0 - 1
service-market

@@ -1 +0,0 @@
-Subproject commit e3ce484a803f68e9936d23b724f64795b4ca6f69

+ 10 - 0
store/live/personalroom.js

@@ -4,6 +4,8 @@ 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 = {};
@@ -29,6 +31,14 @@ const actions = {
     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 {