|
@@ -32,8 +32,8 @@ const actions = {
|
|
|
const res = await this.$axios.$delete(`${api.newsInfo}/${payload}`);
|
|
|
return res;
|
|
|
},
|
|
|
- async querytwo({ commit }, {}) {
|
|
|
- const res = await this.$axios.$get(api.servenodeInfo, {});
|
|
|
+ async querytwo({ commit }, { skip = 0, limit = 15, ...info } = {}) {
|
|
|
+ const res = await this.$axios.$get(api.servenodeInfo, { ...info });
|
|
|
return res;
|
|
|
},
|
|
|
};
|