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;