liuyu před 4 roky
rodič
revize
f64cc3ec56
2 změnil soubory, kde provedl 15 přidání a 8 odebrání
  1. 14 7
      src/store/chat.js
  2. 1 1
      src/views/live/roomMeet.vue

+ 14 - 7
src/store/chat.js

@@ -1,32 +1,39 @@
+// 房间
 import Vue from 'vue';
 import Vuex from 'vuex';
 import _ from 'lodash';
 Vue.use(Vuex);
 const api = {
-  interface: `/api/onlive/chat`,
+  chatInfo: `/api/onlive/chat`,
 };
 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 });
+  async query({ commit }, { skip = 0, limit = 1000, ...info } = {}) {
+    const res = await this.$axios.$get(api.chatInfo, {
+      skip,
+      limit,
+      ...info,
+    });
     return res;
   },
   async create({ commit }, payload) {
-    const res = await this.$axios.$post(`${api.interface}`, payload);
+    const res = await this.$axios.$post(`${api.chatInfo}`, payload);
     return res;
   },
   async fetch({ commit }, payload) {
-    const res = await this.$axios.$get(`${api.interface}/${payload}`);
+    const res = await this.$axios.$get(`${api.chatInfo}/${payload}`);
     return res;
   },
   async update({ commit }, { id, ...info } = {}) {
-    const res = await this.$axios.$post(`${api.interface}/${id}`, { ...info });
+    const res = await this.$axios.$post(`${api.chatInfo}/update/${id}`, {
+      ...info,
+    });
     return res;
   },
   async delete({ commit }, payload) {
-    const res = await this.$axios.$delete(`${api.interface}/${payload}`);
+    const res = await this.$axios.$delete(`${api.chatInfo}/${payload}`);
     return res;
   },
 };

+ 1 - 1
src/views/live/roomMeet.vue

@@ -110,7 +110,7 @@ export default {
   methods: {
     ...gensign(['gensignFetch']),
     ...room(['lookuserFetch', 'fetch', 'lookusercount']),
-    ...chat(['query', 'create', 'fetch']),
+    ...chat(['query', 'create']),
     async chatSearch({ skip = 0, limit = 1000 } = {}) {
       const info = { roomid: this.id };
       let res = await this.query({ skip, limit, ...info });