@@ -10,6 +10,7 @@ const mutations = {};
const actions = {
async query({ commit }, { skip = 0, limit = 10, ...info } = {}) {
+ console.log(info);
const res = await this.$axios.$get(api.interface, { skip, limit, ...info, project: 'market' });
return res;
},