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,