guhongwei 3 年之前
父節點
當前提交
14f50387ff
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      src/store/patent/patentinfo.js

+ 8 - 0
src/store/patent/patentinfo.js

@@ -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,