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

+ 8 - 0
src/store/dock/dockTranscation.js

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