guhongwei há 5 anos atrás
pai
commit
80b11f4429
1 ficheiros alterados com 4 adições e 0 exclusões
  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;