guhongwei 4 년 전
부모
커밋
45504f86f7
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      store/market/marketproduct.js

+ 8 - 0
store/market/marketproduct.js

@@ -25,6 +25,14 @@ const actions = {
     });
     return res;
   },
+  async comquery({ commit }, { skip = 0, limit, ...info } = {}) {
+    const res = await this.$axios.$get(`${api.newsInfo}/allquery`, {
+      skip,
+      limit,
+      ...info,
+    });
+    return res;
+  },
   async newfetch({ commit }, { skip = 0, limit, ...info } = {}) {
     const res = await this.$axios.$get(`${api.newsInfo}/newfetch`, {
       skip,