guhongwei 5 년 전
부모
커밋
80b11f4429
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      store/live/dock.js

+ 4 - 0
store/live/dock.js

@@ -13,6 +13,10 @@ const actions = {
     const res = await this.$axios.$get(api.dockInfo, { skip, limit, ...info });
     return res;
   },
+  async myapply({ commit }, { skip = 0, limit = undefined, ...info } = {}) {
+    const res = await this.$axios.$get(api.dockInfo, { skip, limit, ...info });
+    return res;
+  },
   async create({ commit }, payload) {
     const res = await this.$axios.$post(`${api.dockInfo}`, payload);
     return res;