@@ -51,6 +51,14 @@ const actions = {
});
return res;
},
+ async mechQuery({ commit }, { skip = 0, limit = 10, ...info } = {}) {
+ const res = await this.$axios.$get(`${api.patentinfo}/mechQuery`, {
+ skip,
+ limit,
+ ...info,
+ });
+ return res;
+ },
};
export default {
namespaced: true,