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

+ 8 - 0
src/store/statistics.js

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