guhongwei 4 lat temu
rodzic
commit
0d83fd0884
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/store/person_chat.js

+ 1 - 1
src/store/person_chat.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 const mutations = {};
 
 
 const actions = {
 const actions = {
-  async query({ commit }, { skip = 0, limit = 10, ...info } = {}) {
+  async query({ commit }, { skip = 0, limit = undefined, ...info } = {}) {
     const res = await this.$axios.$get(api.interface, { skip, limit, ...info });
     const res = await this.$axios.$get(api.interface, { skip, limit, ...info });
     return res;
     return res;
   },
   },